From: Brian Paul Date: Wed, 14 May 2008 22:44:48 +0000 (-0600) Subject: init SamplersUsed bits in _mesa_parse_arb_fragment_program X-Git-Tag: android-x86-1.6~1199 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1af2b14514146d5f0d48a45165a579e88cc7a867;p=android-x86%2Fexternal-mesa.git init SamplersUsed bits in _mesa_parse_arb_fragment_program --- diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 74004e9b137..60aaabe679f 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -3851,8 +3851,11 @@ _mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target, program->Base.NumNativeTexIndirections = ap.Base.NumTexIndirections; program->Base.InputsRead = ap.Base.InputsRead; program->Base.OutputsWritten = ap.Base.OutputsWritten; - for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++) + for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++) { program->Base.TexturesUsed[i] = ap.TexturesUsed[i]; + if (ap.TexturesUsed[i]) + program->Base.SamplersUsed |= (1 << i); + } program->Base.ShadowSamplers = ap.ShadowSamplers; program->FogOption = ap.FogOption; program->UsesKill = ap.UsesKill;