diff options
author | Eric Anholt <eric@anholt.net> | 2010-07-06 17:53:32 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-07-06 18:49:24 -0700 |
commit | a36334be02cb0a2b834667116bfeb680bf365857 (patch) | |
tree | e1acebea80accff975b7b09c443cb909d341554b /src/glsl/Makefile | |
parent | 2d1789e667c4180777829f96856daf91326721b9 (diff) |
glsl2: Add pass for supporting variable vector indexing in rvalues.
The Mesa IR needs this to support vector indexing correctly, and
hardware backends such as 915 would want this behavior as well.
Fixes glsl-vs-vec4-indexing-2.
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index 30ba475d92..d2a687aa33 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -47,6 +47,7 @@ CXX_SOURCES = \ ir_swizzle_swizzle.cpp \ ir_validate.cpp \ ir_variable.cpp \ + ir_vec_index_to_cond_assign.cpp \ ir_vec_index_to_swizzle.cpp \ linker.cpp \ s_expression.cpp |