From: Brian Paul Date: Fri, 2 Jan 2009 23:55:33 +0000 (-0700) Subject: softpipe: increase number of texture samplers/units to PIPE_MAX_SAMPLERS (16) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=19aed38919d43179a9f9cb0096aba981fabc4481;p=mesa.git softpipe: increase number of texture samplers/units to PIPE_MAX_SAMPLERS (16) --- diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 12f98c32f53..11b08b3a82d 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -55,9 +55,9 @@ softpipe_get_param(struct pipe_screen *screen, int param) { switch (param) { case PIPE_CAP_MAX_TEXTURE_IMAGE_UNITS: - return 8; + return PIPE_MAX_SAMPLERS; case PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS: - return 8; + return PIPE_MAX_SAMPLERS; case PIPE_CAP_NPOT_TEXTURES: return 1; case PIPE_CAP_TWO_SIDED_STENCIL: