diff options
author | Eric Anholt <[email protected]> | 2010-10-31 10:51:59 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-03-11 12:55:13 -0800 |
commit | cdacca4868bbfe2e39f72d524556e7b2c7200ba5 (patch) | |
tree | ea2faab50ad1d3e65c40f5fbbaa2daebf06394a7 /src/mesa/sources.mak | |
parent | e1cb12bfff7f65c3599c9b68b9269f73942b1602 (diff) |
mesa: Move texenvprogram.c to ff_fragment_shader.cpp.
This file is about to change to generating a shader program instead of
a fragment program.
Diffstat (limited to 'src/mesa/sources.mak')
-rw-r--r-- | src/mesa/sources.mak | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index 95330947a83..21e08ed5f36 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -83,7 +83,6 @@ MAIN_SOURCES = \ main/texcompress_s3tc.c \ main/texcompress_fxt1.c \ main/texenv.c \ - main/texenvprogram.c \ main/texfetch.c \ main/texformat.c \ main/texgen.c \ @@ -103,6 +102,9 @@ MAIN_SOURCES = \ main/vtxfmt.c \ $(MAIN_ES_SOURCES) +MAIN_CXX_SOURCES = \ + main/ff_fragment_shader.cpp + MATH_SOURCES = \ math/m_debug_clip.c \ math/m_debug_norm.c \ @@ -316,7 +318,8 @@ MESA_SOURCES = \ $(ASM_C_SOURCES) MESA_CXX_SOURCES = \ - $(SHADER_CXX_SOURCES) + $(MAIN_CXX_SOURCES) \ + $(SHADER_CXX_SOURCES) # Sources for building Gallium drivers MESA_GALLIUM_SOURCES = \ @@ -329,7 +332,8 @@ MESA_GALLIUM_SOURCES = \ x86/common_x86.c MESA_GALLIUM_CXX_SOURCES = \ - $(SHADER_CXX_SOURCES) + $(MAIN_CXX_SOURCES) \ + $(SHADER_CXX_SOURCES) # All the core C sources, for dependency checking ALL_SOURCES = \ |