diff options
author | michal <michal@michal-laptop.(none)> | 2007-07-05 19:55:38 +0200 |
---|---|---|
committer | michal <michal@michal-laptop.(none)> | 2007-07-05 19:55:38 +0200 |
commit | ffe58739da9eee2e99682747cc8f26e412c87430 (patch) | |
tree | 17698bfe671373d903d56ccc5d434b5ff3193d41 /src/mesa/sources | |
parent | ac5523a9c31efbb89e58ef99da47b0d81a21409c (diff) |
Softpipe: import TGSI tree. Not hooked-up yet.
Diffstat (limited to 'src/mesa/sources')
-rw-r--r-- | src/mesa/sources | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/mesa/sources b/src/mesa/sources index 643e841b15..b1ff3798a6 100644 --- a/src/mesa/sources +++ b/src/mesa/sources @@ -179,6 +179,16 @@ SOFTPIPE_SOURCES = \ pipe/softpipe/sp_state_setup.c \ pipe/softpipe/sp_state_surface.c +TGSICORE_SOURCES = \ + pipe/tgsi/core/tgsi_build.c \ + pipe/tgsi/core/tgsi_dump.c \ + pipe/tgsi/core/tgsi_exec.c \ + pipe/tgsi/core/tgsi_parse.c \ + pipe/tgsi/core/tgsi_util.c + +TGSIMESA_SOURCES = \ + pipe/tgsi/mesa/mesa_to_tgsi.c + STATETRACKER_SOURCES = \ state_tracker/st_atom.c \ state_tracker/st_atom_alphatest.c \ @@ -344,8 +354,10 @@ SOLO_SOURCES = \ $(MATH_SOURCES) \ $(VBO_SOURCES) \ $(VF_SOURCES) \ - $(SOFTPIPE_SOURCES) \ - $(STATETRACKER_SOURCES) \ + $(SOFTPIPE_SOURCES) \ + $(TGSICORE_SOURCES) \ + $(TGSIMESA_SOURCES) \ + $(STATETRACKER_SOURCES) \ $(TNL_SOURCES) \ $(SHADER_SOURCES) \ $(SWRAST_SOURCES) \ @@ -391,4 +403,5 @@ INCLUDE_DIRS = \ -I$(TOP)/src/mesa/shader/grammar \ -I$(TOP)/src/mesa/shader/slang \ -I$(TOP)/src/mesa/swrast \ - -I$(TOP)/src/mesa/swrast_setup + -I$(TOP)/src/mesa/swrast_setup \ + -I$(TOP)/src/mesa/pipe/tgsi |