summaryrefslogtreecommitdiff
path: root/src/mesa/main/descrip.mms
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-01-14 04:55:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-01-14 04:55:45 +0000
commit610d59981a9f43fefe29b34ef19c184d28e2bef5 (patch)
tree6bac42c2fd25b19ed35260538c6d945de8d699d8 /src/mesa/main/descrip.mms
parentcf01d97dc3e23af067dd9633a2bfa61a6a794ce6 (diff)
First batch of code for GL_NV_fragment_program.
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS.
Diffstat (limited to 'src/mesa/main/descrip.mms')
-rw-r--r--src/mesa/main/descrip.mms17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/mesa/main/descrip.mms b/src/mesa/main/descrip.mms
index 215ace488e..27f31caa4b 100644
--- a/src/mesa/main/descrip.mms
+++ b/src/mesa/main/descrip.mms
@@ -49,6 +49,10 @@ CORE_SOURCES =accum.c \
lines.c \
matrix.c \
mmath.c \
+ nvprogram.c \
+ nvfragparse.c \
+ nvvertexec.c \
+ nvvertparse.c \
pixel.c \
points.c \
polygon.c \
@@ -64,8 +68,6 @@ CORE_SOURCES =accum.c \
texutil.c \
varray.c \
vtxfmt.c \
- vpstate.c \
- vpexec.c \
vsnprintf.c \
vtparse.c \
[.x86]x86.c
@@ -101,6 +103,7 @@ RASTER_SOURCES = [.swrast]s_aatriangle.c \
[.swrast]s_lines.c \
[.swrast]s_logic.c \
[.swrast]s_masking.c \
+[.swrast]s_nvfragprog.c \
[.swrast]s_pixeltex.c \
[.swrast]s_points.c \
[.swrast]s_readpix.c \
@@ -189,6 +192,10 @@ lines.obj,\
matrix.obj
OBJECTS3=mmath.obj,\
+nvprogram.obj \
+nvfragparse.obj \
+nvvertexec.obj \
+nvvertparse.obj \
pixel.obj,\
points.obj,\
polygon.obj,\
@@ -204,9 +211,6 @@ texstore.obj,\
texutil.obj,\
varray.obj,\
vtxfmt.obj,\
-vpstate.obj,\
-vpexec.obj,\
-vpparse.obj,\
vsnprintf.obj
OBJECTS4=[.x]glxapi.obj,[.x]fakeglx.obj,[.x]xfonts.obj,\
@@ -241,6 +245,7 @@ OBJECTS8=[.swrast]s_drawpix.obj,\
[.swrast]s_lines.obj,\
[.swrast]s_logic.obj,\
[.swrast]s_masking.obj,\
+[.swrast]s_nvfragprog.obj,\
[.swrast]s_pixeltex.obj,\
[.swrast]s_points.obj
@@ -438,6 +443,8 @@ imports.obj : imports.c
$(CC) $(CFLAGS) /obj=[.swrast]s_logic.obj [.swrast]s_logic.c
[.swrast]s_masking.obj : [.swrast]s_masking.c
$(CC) $(CFLAGS) /obj=[.swrast]s_masking.obj [.swrast]s_masking.c
+[.swrast]s_nvfragprog.obj : [.swrast]s_nvfragprog.c
+ $(CC) $(CFLAGS) /obj=[.swrast]s_nvfragprog.obj [.swrast]s_nvfragprog.c
[.swrast]s_pixeltex.obj : [.swrast]s_pixeltex.c
$(CC) $(CFLAGS) /obj=[.swrast]s_pixeltex.obj [.swrast]s_pixeltex.c
[.swrast]s_points.obj : [.swrast]s_points.c