From: Brian Date: Fri, 14 Dec 2007 18:42:28 +0000 (-0700) Subject: set SamplerUnit[] entry in load_texture() just to be safe X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fce4612f8a29ee1798c9326a431a139d856c7a04;p=mesa.git set SamplerUnit[] entry in load_texture() just to be safe --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 1e46d8c3754..d866d10017e 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -941,6 +941,10 @@ static void load_texture( struct texenv_fragment_program *p, GLuint unit ) tmp, WRITEMASK_XYZW, unit, dim, texcoord ); p->program->Base.SamplersUsed |= (1 << unit); + /* This identity mapping should already be in place + * (see _mesa_init_program_struct()) but let's be safe. + */ + p->program->Base.SamplerUnits[unit] = unit; } else p->src_texture[unit] = get_zero(p);