diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2000-11-24 10:25:05 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2000-11-24 10:25:05 +0000 |
commit | ad2ac216fa0cbebc36530bf9e5256e902710b892 (patch) | |
tree | 2b44b0129679558d0a1760bf94d75bcdbfe145ad /src/mesa/main/Makefile.X11 | |
parent | 00608a79dce1ea5e274f35b0a1883f7b623b9d7a (diff) |
Support for swappable t&l modules, including an example one in the FX
driver (enable with FX_ALLOW_VTXFMT=t).
Diffstat (limited to 'src/mesa/main/Makefile.X11')
-rw-r--r-- | src/mesa/main/Makefile.X11 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mesa/main/Makefile.X11 b/src/mesa/main/Makefile.X11 index acec47b09c..84384f4c81 100644 --- a/src/mesa/main/Makefile.X11 +++ b/src/mesa/main/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.33 2000/11/16 21:05:34 keithw Exp $ +# $Id: Makefile.X11,v 1.34 2000/11/24 10:25:05 keithw Exp $ # Mesa 3-D graphics library # Version: 3.5 @@ -21,6 +21,7 @@ LIBDIR = ../lib CORE_SOURCES = \ + tnl/t_vtxfmt.c \ tnl/t_bbox.c \ tnl/t_clip.c \ tnl/t_context.c \ @@ -31,7 +32,6 @@ CORE_SOURCES = \ tnl/t_fog.c \ tnl/t_light.c \ tnl/t_pipeline.c \ - tnl/t_rect.c \ tnl/t_shade.c \ tnl/t_stages.c \ tnl/t_texture.c \ @@ -39,10 +39,11 @@ CORE_SOURCES = \ tnl/t_varray.c \ tnl/t_vb.c \ tnl/t_vbcull.c \ - tnl/t_vbfill.c \ tnl/t_vbindirect.c \ tnl/t_vbrender.c \ tnl/t_vbxform.c \ + api_loopback.c \ + api_noop.c \ accum.c \ alpha.c \ attrib.c \ @@ -90,7 +91,6 @@ CORE_SOURCES = \ polygon.c \ rastpos.c \ readpix.c \ - rect.c \ scissor.c \ state.c \ stencil.c \ @@ -100,6 +100,7 @@ CORE_SOURCES = \ texture.c \ texutil.c \ varray.c \ + vtxfmt.c \ winpos.c \ X86/x86.c \ X86/common_x86.c \ @@ -147,6 +148,8 @@ CORE_SOURCES = \ DRIVER_SOURCES = \ + FX/fxvtxfmt.c \ + FX/fxvtxprims.c \ FX/fxapi.c \ FX/fxdd.c \ FX/fxddspan.c \ |