Gallium: remove unnecessary ifdef for MAX_CLIPPED_VERTICES.
authorPaul Berry <stereotype441@gmail.com>
Thu, 8 Sep 2011 01:18:45 +0000 (18:18 -0700)
committerPaul Berry <stereotype441@gmail.com>
Tue, 20 Sep 2011 21:51:16 +0000 (14:51 -0700)
commitbc0037083235ea149d8a2708bd1a5d2559f07dc7
treee904c1bc31891189277a4ed4cf7ae509b10a0c9a
parent61b2d01101ee6d42c11a2547909460a5c21588a0
Gallium: remove unnecessary ifdef for MAX_CLIPPED_VERTICES.

draw_pipe_clip.c contained an ifdef to ensure that its local
definition of MAX_CLIPPED_VERTICES would not take effect if the global
MAX_CLIPPED_VERTICES (defined in src/mesa/main/config.h) was already
defined.  This was unnecessary because draw_pipe_clip.c doesn't
directly or indirectly include src/mesa/main/config.h.  Removed the
ifdef to reduce confusion.

Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/draw/draw_pipe_clip.c