From 29e013e58be93aa6ed760393cf77ef34ca1d57c0 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 23 Nov 2010 15:55:59 -0800 Subject: mesa: Add gl_MESAFogParamsOptimized for our special pre-computed fog params. It would be nice if we handled optimized uniform math like this in some generic way, since people often end up doing uniform expressions in shaders, but for now keep this hard-coded like it was in the texenvprogram code. --- src/glsl/builtin_variables.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/glsl') diff --git a/src/glsl/builtin_variables.h b/src/glsl/builtin_variables.h index dfc93f39db..9b4f5d9e3e 100644 --- a/src/glsl/builtin_variables.h +++ b/src/glsl/builtin_variables.h @@ -105,5 +105,6 @@ static const builtin_variable builtin_110_deprecated_uniforms[] = { /* Mesa-internal ATI_envmap_bumpmap state. */ { ir_var_uniform, -1, "vec2", "gl_MESABumpRotMatrix0"}, { ir_var_uniform, -1, "vec2", "gl_MESABumpRotMatrix1"}, + { ir_var_uniform, -1, "vec4", "gl_MESAFogParamsOptimized"}, }; -- cgit v1.2.3