diff options
author | Paul Berry <[email protected]> | 2012-12-17 14:20:35 -0800 |
---|---|---|
committer | Paul Berry <[email protected]> | 2013-01-08 09:09:09 -0800 |
commit | 4b11b57ab47b98b335a7212080dbccef04542805 (patch) | |
tree | 626e87c5d4f65ce3205becd943c3a54a266d82ad /src/glsl/Makefile.sources | |
parent | 8706395f25228d0e622cc56346c7181ba102edf4 (diff) |
glsl: Separate varying linking code to its own file.
linker.cpp is getting pretty big, and we're about to add even more
varying packing code, so split out the linker code that concerns
varyings to its own file.
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 d984c5ca759..2227c5ef596 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -46,6 +46,7 @@ LIBGLSL_FILES = \ $(GLSL_SRCDIR)/link_functions.cpp \ $(GLSL_SRCDIR)/link_uniforms.cpp \ $(GLSL_SRCDIR)/link_uniform_initializers.cpp \ + $(GLSL_SRCDIR)/link_varyings.cpp \ $(GLSL_SRCDIR)/loop_analysis.cpp \ $(GLSL_SRCDIR)/loop_controls.cpp \ $(GLSL_SRCDIR)/loop_unroll.cpp \ |