Changeset 13539
- Timestamp:
- Mar 1, 2000, 3:26:49 PM (25 years ago)
- Location:
- tags/trunk/src/opengl
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/opengl/glide/cvg/glide/makefile ¶
r13468 r13539 1 # $Id: makefile,v 1. 1 2000-02-25 00:37:43sandervl Exp $1 # $Id: makefile,v 1.2 2000-03-01 14:26:49 sandervl Exp $ 2 2 # 3 3 # PD-Win32 API … … 18 18 CINCLUDE=-I..\incsrc;..\..\swlibs\fxmisc;..\init\initvg;..\init;..\texus;..\..\swlibs\pcilib;$(PDWIN32_INCLUDE) 19 19 20 CFLAGS = $(CFLAGS) $(CINCLUDE) 21 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) 20 CFLAGS = $(CFLAGS) $(CINCLUDE) /Os- 21 CXXFLAGS = $(CXXFLAGS) $(CINCLUDE) /Os- 22 22 23 23 OBJS = CPUDTECT.OBJ DDGUMP.OBJ DIGLIDE.OBJ DIGUTEX.OBJ DISST.OBJ \ -
TabularUnified tags/trunk/src/opengl/glide/cvg/makefile ¶
r13514 r13539 1 # $Id: makefile,v 1. 4 2000-02-27 19:10:01sandervl Exp $1 # $Id: makefile,v 1.5 2000-03-01 14:26:49 sandervl Exp $ 2 2 # 3 3 # PD-Win32 API … … 30 30 cd ..\swlibs\pcilib 31 31 $(MAKE_CMD) 32 cd ..\..\ sst132 cd ..\..\cvg 33 33 34 34 init\init.lib: -
TabularUnified tags/trunk/src/opengl/makefile ¶
r13471 r13539 1 # $Id: makefile,v 1.1 1 2000-02-25 00:57:10sandervl Exp $1 # $Id: makefile,v 1.12 2000-03-01 14:26:49 sandervl Exp $ 2 2 # 3 3 # PD-Win32 API … … 15 15 16 16 17 !ifdef DEBUG 18 !ifdef NODEBUGINFO 19 MAKE_CMD=nmake DEBUG=1 NODEBUGINFO=1 20 !else 21 MAKE_CMD=nmake DEBUG=1 22 !endif 23 !else 17 #SvL: Only build the release version of glide, mesa & glu(t) 18 # There's no need for debug (even without dbg info) builds in the daily build archive 24 19 MAKE_CMD=nmake 25 !endif26 20 27 21 CFLAGS = $(CFLAGS) -I$(PDWIN32_INCLUDE) -
TabularUnified tags/trunk/src/opengl/mesa/3dfx/makefile ¶
r13518 r13539 1 # $Id: makefile,v 1. 1 2000-02-29 00:46:20sandervl Exp $1 # $Id: makefile,v 1.2 2000-03-01 14:26:49 sandervl Exp $ 2 2 # 3 3 # PD-Win32 … … 56 56 $(TARGET).DLL: $(OBJS) $(TARGET).lrf $(TARGET).def 57 57 -ILINK /FREE /NOE $(L) @$(TARGET).lrf 58 $(CP) $@ $(PDWIN32_BIN) 58 $(CP) $@ $(PDWIN32_BIN)\Glide 59 59 60 60 $(TARGET).lrf: makefile … … 71 71 $(TARGET).def 72 72 <<keep 73 74 $(TARGET).lib: $(TARGET)exp.def75 $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def76 $(CP) $@ $(PDWIN32_LIB)77 78 $(TARGET)exp.def: $(TARGET).def79 $(IMPDEF) $** $@80 73 81 74 resource.asm: fxmesa32.rc -
TabularUnified tags/trunk/src/opengl/mesa/GL/gl.h ¶
r13525 r13539 1 /* $Id: gl.h,v 1. 2 2000-02-29 13:56:52sandervl Exp $ */1 /* $Id: gl.h,v 1.3 2000-03-01 14:26:49 sandervl Exp $ */ 2 2 3 3 /* … … 99 99 typedef void *HDC; 100 100 typedef unsigned long COLORREF; 101 #endif102 103 #if defined(_WIN32) && !defined(_WINGDI_) && !defined(OPENSTEP)104 # define WGL_FONT_LINES 0105 # define WGL_FONT_POLYGONS 1106 # ifdef UNICODE107 # define wglUseFontBitmaps wglUseFontBitmapsW108 # define wglUseFontOutlines wglUseFontOutlinesW109 # else110 # define wglUseFontBitmaps wglUseFontBitmapsA111 # define wglUseFontOutlines wglUseFontOutlinesA112 # endif /* !UNICODE */113 typedef struct tagLAYERPLANEDESCRIPTOR LAYERPLANEDESCRIPTOR, *PLAYERPLANEDESCRIPTOR, *LPLAYERPLANEDESCRIPTOR;114 typedef struct _GLYPHMETRICSFLOAT GLYPHMETRICSFLOAT, *PGLYPHMETRICSFLOAT, *LPGLYPHMETRICSFLOAT;115 typedef struct tagPIXELFORMATDESCRIPTOR PIXELFORMATDESCRIPTOR, *PPIXELFORMATDESCRIPTOR, *LPPIXELFORMATDESCRIPTOR;116 #include <gl/mesa_wgl.h>117 101 #endif 118 102
Note:
See TracChangeset
for help on using the changeset viewer.