From e3b0c19ec98cb97138e1d13d46fdb4a5449837f1 Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Tue, 10 May 2005 10:15:30 +0000 Subject: Committing in . OpenVMS compile support update for new buffer-code Modified Files: Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/swrast/descrip.mms ---------------------------------------------------------------------- --- src/mesa/drivers/x11/descrip.mms | 5 +++-- src/mesa/main/descrip.mms | 15 ++++++++++++++- src/mesa/swrast/descrip.mms | 12 ++++-------- 3 files changed, 21 insertions(+), 11 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/drivers/x11/descrip.mms b/src/mesa/drivers/x11/descrip.mms index ffac99fc30..69d14e36c6 100644 --- a/src/mesa/drivers/x11/descrip.mms +++ b/src/mesa/drivers/x11/descrip.mms @@ -22,10 +22,10 @@ LIBDIR = [----.lib] CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short) SOURCES = fakeglx.c glxapi.c xfonts.c xm_api.c xm_dd.c xm_line.c xm_span.c\ - xm_tri.c + xm_tri.c xm_buffer.c OBJECTS =fakeglx.obj,glxapi.obj,xfonts.obj,xm_api.obj,xm_dd.obj,xm_line.obj,\ - xm_span.obj,xm_tri.obj + xm_span.obj,xm_tri.obj,xm_buffer.obj ##### RULES ##### @@ -44,6 +44,7 @@ fakeglx.obj : fakeglx.c glxapi.obj : glxapi.c xfonts.obj : xfonts.c xm_api.obj : xm_api.c +xm_buffer.obj : xm_buffer.c xm_dd.obj : xm_dd.c xm_line.obj : xm_line.c xm_span.obj : xm_span.c diff --git a/src/mesa/main/descrip.mms b/src/mesa/main/descrip.mms index f8eaff9069..a7a5966ca9 100644 --- a/src/mesa/main/descrip.mms +++ b/src/mesa/main/descrip.mms @@ -1,10 +1,11 @@ # Makefile for core library for VMS # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl -# Last revision : 18 August 2004 +# Last revision : 10 May 2005 .first define gl [---.include.gl] define math [-.math] + define shader [-.shader] .include [---]mms-config. @@ -41,6 +42,7 @@ SOURCES =accum.c \ fbobject.c \ feedback.c \ fog.c \ + framebuffer.c \ get.c \ getstring.c \ hash.c \ @@ -56,14 +58,17 @@ SOURCES =accum.c \ points.c \ polygon.c \ rastpos.c \ + renderbuffer.c \ state.c \ stencil.c \ texcompress.c \ texcompress_fxt1.c \ texcompress_s3tc.c \ + texenvprogram.c \ texformat.c \ teximage.c \ texobj.c \ + texrender.c \ texstate.c \ texstore.c \ varray.c \ @@ -94,6 +99,7 @@ extensions.obj,\ fbobject.obj,\ feedback.obj,\ fog.obj,\ +framebuffer.obj,\ get.obj,\ getstring.obj,\ hash.obj,\ @@ -109,14 +115,17 @@ pixel.obj,\ points.obj,\ polygon.obj,\ rastpos.obj,\ +renderbuffer.obj,\ state.obj,\ stencil.obj,\ texcompress.obj,\ texcompress_fxt1.obj,\ texcompress_s3tc.obj,\ +texenvprogram.obj,\ texformat.obj,\ teximage.obj,\ texobj.obj,\ +texrender.obj,\ texstate.obj,\ texstore.obj,\ varray.obj,\ @@ -161,6 +170,7 @@ extensions.obj : extensions.c fbobject.obj : fbobject.c feedback.obj : feedback.c fog.obj : fog.c +framebuffer.obj : framebuffer.c get.obj : get.c getstring.obj : getstring.c hash.obj : hash.c @@ -176,15 +186,18 @@ pixel.obj : pixel.c points.obj : points.c polygon.obj : polygon.c rastpos.obj : rastpos.c +renderbuffer.obj : renderbuffer.c state.obj : state.c stencil.obj : stencil.c texcompress.obj : texcompress.c texcompress_fxt1.obj : texcompress_fxt1.c cc$(CFLAGS)/warn=(disable=SHIFTCOUNT) texcompress_fxt1.c texcompress_s3tc.obj : texcompress_s3tc.c +texenvprogram.obj : texenvprogram.c texformat.obj : texformat.c teximage.obj : teximage.c texobj.obj : texobj.c +texrender.obj : texrender.c texstate.obj : texstate.c texstore.obj : texstore.c varray.obj : varray.c diff --git a/src/mesa/swrast/descrip.mms b/src/mesa/swrast/descrip.mms index 1fdfe564f6..7b35627709 100644 --- a/src/mesa/swrast/descrip.mms +++ b/src/mesa/swrast/descrip.mms @@ -18,21 +18,20 @@ INCDIR = [---.include],[-.main],[-.glapi],[-.shader] LIBDIR = [---.lib] CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short) -SOURCES = s_aaline.c s_aatriangle.c s_accum.c s_alpha.c s_alphabuf.c \ - s_auxbuffer.c \ +SOURCES = s_aaline.c s_aatriangle.c s_accum.c s_alpha.c \ s_bitmap.c s_blend.c s_buffers.c s_context.c s_copypix.c s_depth.c \ s_drawpix.c s_feedback.c s_fog.c s_imaging.c s_lines.c s_logic.c \ s_masking.c s_nvfragprog.c s_pixeltex.c s_points.c s_readpix.c \ s_span.c s_stencil.c s_texstore.c s_texture.c s_triangle.c s_zoom.c \ - s_auxbuffer.c s_atifragshader.c + s_atifragshader.c OBJECTS = s_aaline.obj,s_aatriangle.obj,s_accum.obj,s_alpha.obj,\ - s_alphabuf.obj,s_auxbuffer.obj,s_bitmap.obj,s_blend.obj,\ + s_bitmap.obj,s_blend.obj,\ s_buffers.obj,s_context.obj,s_atifragshader.obj,\ s_copypix.obj,s_depth.obj,s_drawpix.obj,s_feedback.obj,s_fog.obj,\ s_imaging.obj,s_lines.obj,s_logic.obj,s_masking.obj,s_nvfragprog.obj,\ s_pixeltex.obj,s_points.obj,s_readpix.obj,s_span.obj,s_stencil.obj,\ - s_texstore.obj,s_texture.obj,s_triangle.obj,s_zoom.obj,s_auxbuffer.obj + s_texstore.obj,s_texture.obj,s_triangle.obj,s_zoom.obj ##### RULES ##### @@ -52,8 +51,6 @@ s_aaline.obj : s_aaline.c s_aatriangle.obj : s_aatriangle.c s_accum.obj : s_accum.c s_alpha.obj : s_alpha.c -s_alphabuf.obj : s_alphabuf.c -s_auxbuffer.obj : s_auxbuffer.c s_bitmap.obj : s_bitmap.c s_blend.obj : s_blend.c s_buffers.obj : s_buffers.c @@ -77,4 +74,3 @@ s_texstore.obj : s_texstore.c s_texture.obj : s_texture.c s_triangle.obj : s_triangle.c s_zoom.obj : s_zoom.c -s_auxbuffer.obj : s_auxbuffer.c -- cgit v1.2.3