diff options
author | Keith Whitwell <[email protected]> | 2004-04-14 21:19:34 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-04-14 21:19:34 +0000 |
commit | 6fb235661a3a78174e7554b292332a1dbb24f171 (patch) | |
tree | a7eafade7171277a5120581c825e26df867c51b4 /src/mesa/sources | |
parent | e3b0dde49c8f14d7e5de440e9e914612868078f5 (diff) |
Use tcc and the emitted C code from s_fragprog_to_c.c to dynamically compile
and execute fragment programs. Very limited and experimental, but works
well enough to run arbfplight.c.
http://fabrice.bellard.free.fr/tcc/
Compile with 'make linux-tcc', being sure to make clean first.
Diffstat (limited to 'src/mesa/sources')
-rw-r--r-- | src/mesa/sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/sources b/src/mesa/sources index 249734f7837..14c4205bbd9 100644 --- a/src/mesa/sources +++ b/src/mesa/sources @@ -70,6 +70,7 @@ ARRAY_CACHE_SOURCES = \ array_cache/ac_import.c SWRAST_SOURCES = \ + swrast/s_fragprog_to_c.c \ swrast/s_aaline.c \ swrast/s_aatriangle.c \ swrast/s_accum.c \ @@ -95,6 +96,7 @@ SWRAST_SOURCES = \ swrast/s_readpix.c \ swrast/s_span.c \ swrast/s_stencil.c \ + swrast/s_tcc.c \ swrast/s_texture.c \ swrast/s_texstore.c \ swrast/s_triangle.c \ |