summaryrefslogtreecommitdiff
path: root/src/mesa/main/Makefile.X11
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2000-11-16 21:05:34 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2000-11-16 21:05:34 +0000
commit23caf20169ac38436ee9c13914f1d6aa7cf6bb5e (patch)
tree21307f7bbcaf9ee1e841d7e7bee130570a7b5b95 /src/mesa/main/Makefile.X11
parent179516673211a2350e479d5321840291f339f5dd (diff)
Move the transform and lighting code to two new directories
math: Provides basic matrix and vector functionality that might be useful to multiple software t&l implementations, and is used by core mesa to manage the Model, Project, etc matrices. tnl: The real transform & lighting code from core mesa, including everything from glVertex3f through vertex buffer handling, transformation, clipping, lighting and handoff to a driver for rasterization. The interfaces of these can be further tightened up, but the basic splitting up of state and code move is done.
Diffstat (limited to 'src/mesa/main/Makefile.X11')
-rw-r--r--src/mesa/main/Makefile.X1151
1 files changed, 31 insertions, 20 deletions
diff --git a/src/mesa/main/Makefile.X11 b/src/mesa/main/Makefile.X11
index 533e0c32d9..acec47b09c 100644
--- a/src/mesa/main/Makefile.X11
+++ b/src/mesa/main/Makefile.X11
@@ -1,4 +1,4 @@
-# $Id: Makefile.X11,v 1.32 2000/11/11 19:09:29 brianp Exp $
+# $Id: Makefile.X11,v 1.33 2000/11/16 21:05:34 keithw Exp $
# Mesa 3-D graphics library
# Version: 3.5
@@ -21,10 +21,31 @@ LIBDIR = ../lib
CORE_SOURCES = \
+ tnl/t_bbox.c \
+ tnl/t_clip.c \
+ tnl/t_context.c \
+ tnl/t_cva.c \
+ tnl/t_debug.c \
+ tnl/t_dlist.c \
+ tnl/t_eval.c \
+ 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 \
+ tnl/t_trans_elt.c \
+ 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 \
accum.c \
alpha.c \
attrib.c \
- bbox.c \
bitmap.c \
blend.c \
buffers.c \
@@ -34,8 +55,7 @@ CORE_SOURCES = \
context.c \
convolve.c \
copypix.c \
- cva.c \
- debug_xform.c \
+ debug.c \
depth.c \
dispatch.c \
dlist.c \
@@ -64,7 +84,6 @@ CORE_SOURCES = \
matrix.c \
mem.c \
mmath.c \
- pipeline.c \
pixel.c \
pixeltex.c \
points.c \
@@ -73,8 +92,6 @@ CORE_SOURCES = \
readpix.c \
rect.c \
scissor.c \
- shade.c \
- stages.c \
state.c \
stencil.c \
teximage.c \
@@ -82,18 +99,8 @@ CORE_SOURCES = \
texstate.c \
texture.c \
texutil.c \
- translate.c \
varray.c \
- vb.c \
- vbcull.c \
- vbfill.c \
- vbindirect.c \
- vbrender.c \
- vbxform.c \
- vector.c \
- vertices.c \
winpos.c \
- xform.c \
X86/x86.c \
X86/common_x86.c \
X86/3dnow.c \
@@ -129,9 +136,13 @@ CORE_SOURCES = \
swrast/s_zoom.c \
swrast_setup/ss_context.c \
swrast_setup/ss_triangle.c \
- swrast_setup/ss_vb.c
-
-
+ swrast_setup/ss_vb.c \
+ math/m_debug_xform.c \
+ math/m_matrix.c \
+ math/m_translate.c \
+ math/m_vector.c \
+ math/m_vertices.c \
+ math/m_xform.c