diff options
author | Ian Romanick <[email protected]> | 2012-04-06 14:06:13 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-05-23 11:41:49 -0700 |
commit | a2e623054b5d8eafebc7499efe93e4bceae16ead (patch) | |
tree | 2faf92102faadd7f3113bd87bcc74d7f93335377 /src/glsl/Makefile.sources | |
parent | 29362875f2613ad87abe7725ce3c56c36d16cf9b (diff) |
glsl: Set initial values for uniforms in the linker
v2: Fix handling of arrays-of-structure. Thanks to Eric Anholt for
pointing this out.
v3: Minor comment change based on feedback from Ken.
Fixes piglit glsl-1.20/execution/uniform-initializer/fs-structure-array
and glsl-1.20/execution/uniform-initializer/vs-structure-array.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index fba03604cc5..caa8ad590c0 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -46,6 +46,7 @@ LIBGLSL_CXX_FILES := \ linker.cpp \ link_functions.cpp \ link_uniforms.cpp \ + link_uniform_initializers.cpp \ loop_analysis.cpp \ loop_controls.cpp \ loop_unroll.cpp \ |