summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-12-08 09:03:35 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2003-12-08 09:03:35 +0000
commit58f88a29d2eeb9cc5f4658113d0ebe11f60ab61c (patch)
tree9ee6e62e631ff78f9eb2863a395830b0698d6e2f /src
parent2799d2535ab013ec82c79e3f98f92cdef43dbdf3 (diff)
Committing in .
OpenVMS compile issues Modified Files: Mesa-newtree/progs/tests/cva.c Mesa-newtree/progs/tests/dinoshade.c Mesa-newtree/progs/tests/multipal.c Mesa-newtree/src/mesa/main/descrip.mms Mesa-newtree/src/mesa/tnl/descrip.mms Mesa-newtree/src/mesa/tnl/t_vtx_api.c ----------------------------------------------------------------------
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/descrip.mms3
-rw-r--r--src/mesa/tnl/descrip.mms30
-rw-r--r--src/mesa/tnl/t_vtx_api.c2
3 files changed, 17 insertions, 18 deletions
diff --git a/src/mesa/main/descrip.mms b/src/mesa/main/descrip.mms
index 67d4e2de81..e6d5d22d8c 100644
--- a/src/mesa/main/descrip.mms
+++ b/src/mesa/main/descrip.mms
@@ -17,6 +17,7 @@ LIBDIR = [---.lib]
CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)
SOURCES =accum.c \
+ api_arrayelt.c \
api_loopback.c \
api_noop.c \
api_validate.c \
@@ -75,6 +76,7 @@ SOURCES =accum.c \
vtxfmt.c
OBJECTS=accum.obj,\
+api_arrayelt.obj,\
api_loopback.obj,\
api_noop.obj,\
api_validate.obj,\
@@ -147,6 +149,7 @@ clean :
delete *.obj;*
accum.obj : accum.c
+api_arrayelt.obj : api_arrayelt.c
api_loopback.obj : api_loopback.c
api_noop.obj : api_noop.c
api_validate.obj : api_validate.c
diff --git a/src/mesa/tnl/descrip.mms b/src/mesa/tnl/descrip.mms
index 8826d049a4..c00fc5ac54 100644
--- a/src/mesa/tnl/descrip.mms
+++ b/src/mesa/tnl/descrip.mms
@@ -17,18 +17,17 @@ INCDIR = [---.include],[-.main],[-.glapi]
LIBDIR = [---.lib]
CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)
-SOURCES = t_array_api.c t_array_import.c t_context.c t_eval_api.c \
- t_imm_alloc.c t_imm_api.c t_imm_debug.c t_imm_dlist.c t_imm_elt.c \
- t_imm_eval.c t_imm_exec.c t_imm_fixup.c t_pipeline.c t_vb_fog.c \
+SOURCES = t_array_api.c t_array_import.c t_context.c \
+ t_pipeline.c t_vb_fog.c t_save_api.c t_vtx_api.c \
t_vb_light.c t_vb_normals.c t_vb_points.c t_vb_program.c \
- t_vb_render.c t_vb_texgen.c t_vb_texmat.c t_vb_vertex.c
+ t_vb_render.c t_vb_texgen.c t_vb_texmat.c t_vb_vertex.c \
+ t_vtx_eval.c t_vtx_exec.c t_save_playback.c t_save_loopback.c
-OBJECTS = t_array_api.obj,t_array_import.obj,t_context.obj,t_eval_api.obj,\
- t_imm_alloc.obj,t_imm_api.obj,t_imm_debug.obj,t_imm_dlist.obj,\
- t_imm_elt.obj,t_imm_eval.obj,t_imm_exec.obj,t_imm_fixup.obj,\
+OBJECTS = t_array_api.obj,t_array_import.obj,t_context.obj,\
t_pipeline.obj,t_vb_fog.obj,t_vb_light.obj,t_vb_normals.obj,\
t_vb_points.obj,t_vb_program.obj,t_vb_render.obj,t_vb_texgen.obj,\
- t_vb_texmat.obj,t_vb_vertex.obj
+ t_vb_texmat.obj,t_vb_vertex.obj,t_save_api.obj,t_vtx_api.obj,\
+ t_vtx_eval.obj,t_vtx_exec.obj,t_save_playback.obj,t_save_loopback.obj
##### RULES #####
@@ -46,15 +45,6 @@ clean :
t_array_api.obj : t_array_api.c
t_array_import.obj : t_array_import.c
t_context.obj : t_context.c
-t_eval_api.obj : t_eval_api.c
-t_imm_alloc.obj : t_imm_alloc.c
-t_imm_api.obj : t_imm_api.c
-t_imm_debug.obj : t_imm_debug.c
-t_imm_dlist.obj : t_imm_dlist.c
-t_imm_elt.obj : t_imm_elt.c
-t_imm_eval.obj : t_imm_eval.c
-t_imm_exec.obj : t_imm_exec.c
-t_imm_fixup.obj : t_imm_fixup.c
t_pipeline.obj : t_pipeline.c
t_vb_fog.obj : t_vb_fog.c
t_vb_light.obj : t_vb_light.c
@@ -65,3 +55,9 @@ t_vb_render.obj : t_vb_render.c
t_vb_texgen.obj : t_vb_texgen.c
t_vb_texmat.obj : t_vb_texmat.c
t_vb_vertex.obj : t_vb_vertex.c
+t_save_api.obj : t_save_api.c
+t_vtx_api.obj : t_vtx_api.c
+t_vtx_eval.obj : t_vtx_eval.c
+t_vtx_exec.obj : t_vtx_exec.c
+t_save_playback.obj : t_save_playback.c
+t_save_loopback.obj : t_save_loopback.c
diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c
index 8f105bef89..2fd5ccab1f 100644
--- a/src/mesa/tnl/t_vtx_api.c
+++ b/src/mesa/tnl/t_vtx_api.c
@@ -431,7 +431,7 @@ ATTRS( 15 )
static void init_attrfv( TNLcontext *tnl )
{
-#ifdef WIN32
+#if defined( WIN32 ) || defined( __VMS )
if (0) fprintf(stderr, "%s %d\n", "init_attrfv", tnl->vtx.vertex_size);
#else
if (0) fprintf(stderr, "%s %d\n", __FUNCTION__, tnl->vtx.vertex_size);