From: Eric Anholt Date: Mon, 3 Aug 2009 19:38:56 +0000 (-0700) Subject: texenv: Use VP->Current, since _Current isn't updated at this point. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a9ba1bfeb3a2852c6eda718e73c46c972a286648;p=mesa.git texenv: Use VP->Current, since _Current isn't updated at this point. --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 2eefae82558..1ee78ffa16e 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -341,7 +341,7 @@ static GLbitfield get_fp_input_mask( GLcontext *ctx ) if (vertexShader) vprog = ctx->Shader.CurrentProgram->VertexProgram; else - vprog = ctx->VertexProgram._Current; + vprog = ctx->VertexProgram.Current; vp_outputs = vprog->Base.OutputsWritten;