diff options
author | Eric Anholt <[email protected]> | 2010-08-06 13:07:25 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-08-06 13:22:31 -0700 |
commit | 925b49ff310bf0b307add7c34627cddf87e6a554 (patch) | |
tree | 07301c8745a5171a4b4ff0511a87ed505043262b /src/glsl/Makefile | |
parent | c234d0b25f622a7bdd3c40bc72fdbd59d8494c7c (diff) |
glsl2: Move gl_program->InputsRead/OutputsWritten setting to an ir pass.
This lets us handle arrays much better than trying to work backwards
from assembly.
Fixes fbo-drawbuffers-maxtargets on swrast (i965 needs loop unrolling)
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 752e60a79f6..0f8b290b654 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -56,6 +56,7 @@ CXX_SOURCES = \ ir_mod_to_fract.cpp \ ir_print_visitor.cpp \ ir_reader.cpp \ + ir_set_program_inouts.cpp \ ir_structure_splitting.cpp \ ir_swizzle_swizzle.cpp \ ir_tree_grafting.cpp \ |