From: Brian Paul Date: Thu, 2 Nov 2006 18:35:19 +0000 (+0000) Subject: always load frag prog state params for now (see comments) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f676f4871b1701ec56298f9d22460677ed0e982;p=mesa.git always load frag prog state params for now (see comments) --- diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 62cf6f2f5ae..52d560ffdb6 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -227,7 +227,12 @@ _swrast_update_fragment_program(GLcontext *ctx, GLbitfield newState) { if (ctx->FragmentProgram._Enabled) { const struct gl_fragment_program *fp = ctx->FragmentProgram._Current; +#if 0 + /* XXX Need a way to trigger the initial loading of parameters + * even when there's no recent state changes. + */ if (fp->Base.Parameters->StateFlags & newState) +#endif _mesa_load_state_parameters(ctx, fp->Base.Parameters); } }