+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 4.0
-#
-# Copyright (C) 1999 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# DOS/DJGPP makefile for Mesa
-#
-# Author: Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-
-#
-# Available options:
-#
-# Environment variables:
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most DMesa code and requires fxMesa.
-# As a consequence, you'll need the DJGPP Glide3
-# library to build any application.
-# default = no
-# X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
-# default = no
-#
-# Targets:
-# all: build everything
-# libgl: build GL
-# libglu: build GLU
-# libglut: build GLUT
-# clean: remove object files
-# realclean: remove all generated files
-#
-
-
-
-.PHONY : all libgl libglu libglut clean realclean
-
-CFLAGS = -Wall -W -pedantic
-CFLAGS += -O2 -ffast-math
-
-export CFLAGS
-
-ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = del $(subst /,\,$(1))
-else
-UNLINK = $(RM) $(1)
-endif
-
-all: libgl libglu libglut
-
-libgl: lib
- $(MAKE) -f Makefile.DJ -C src/mesa
-libglu: lib
- $(MAKE) -f Makefile.DJ -C src/glu/sgi
-libglut: lib
- $(MAKE) -f Makefile.DJ -C src/glut/dos
-
-lib:
- mkdir lib
-
-clean:
- $(MAKE) -f Makefile.DJ clean -C src/mesa
- $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
- $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
- $(MAKE) -f Makefile.DJ clean -C src/glut/dos
-
-realclean: clean
- -$(call UNLINK,lib/*.a)
- -$(call UNLINK,lib/*.dxe)
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 4.0
-#
-# Copyright (C) 1999 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# MinGW makefile v1.2 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-
-#
-# Available options:
-#
-# Environment variables:
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most WMesa code and requires fxMesa.
-# As a consequence, you'll need the Win32 Glide3
-# library to build any application.
-# default = no
-# ICD=1 build the installable client driver interface
-# (windows opengl driver interface)
-# default = no
-# X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
-# default = no
-#
-# Targets:
-# all: build everything
-# libgl: build GL
-# clean: remove object files
-# realclean: remove all generated files
-#
-
-# MinGW core makefile updated for Mesa 7.0
-#
-# Updated : by Heromyth, on 2007-7-21
-# Email : zxpmyth@yahoo.com.cn
-# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
-# The others havn't been tested yet.
-# 2) The generated DLLs are *not* compatible with the ones built
-# with the other compilers like VC8, especially for GLUT.
-# 3) MAlthough more tests are needed, it can be used individually!
-
-
-.PHONY : all libgl clean realclean
-
-ifeq ($(ICD),1)
- # when -std=c99 mingw will not define WIN32
- CFLAGS = -Wall -Werror
-else
- # I love c89
- CFLAGS = -Wall -pedantic
-endif
-CFLAGS += -O2 -ffast-math
-
-export CFLAGS
-
-
-ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = del $(subst /,\,$(1))
-else
-UNLINK = $(RM) $(1)
-endif
-
-all: libgl libglu libglut example
-
-libgl: lib
- $(MAKE) -f Makefile.mgw -C src/mesa
-
-libglu: libgl
- $(MAKE) -f Makefile.mgw -C src/glu/sgi
-
-libglut: libglu
- $(MAKE) -f Makefile.mgw -C src/glut/glx
-
-example: libglut
- $(MAKE) -f Makefile.mgw star -C progs/samples
- copy progs\samples\star.exe lib
-
-lib:
- mkdir lib
-
-clean:
- $(MAKE) -f Makefile.mgw clean -C src/mesa
- $(MAKE) -f Makefile.mgw clean -C src/glu/sgi
- $(MAKE) -f Makefile.mgw clean -C src/glut/glx
-
-realclean: clean
- -$(call UNLINK,lib/*.a)
- -$(call UNLINK,lib/*.dll)
+++ /dev/null
-# MinGW config include file updated for Mesa 7.0\r
-#\r
-# Updated : by Heromyth, on 2007-7-21\r
-# Email : zxpmyth@yahoo.com.cn\r
-# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work. \r
-# The others havn't been tested yet.\r
-# 2) The generated DLLs are *not* compatible with the ones built\r
-# with the other compilers like VC8, especially for GLUT. \r
-# 3) Although more tests are needed, it can be used individually!\r
-\r
-# The generated DLLs by MingW with STDCALL are not totally compatible \r
-# with the ones linked by Microsoft's compilers.\r
-#\r
-# xxx_USING_STDCALL = 1 Compiling MESA with __stdcall. This is default!\r
-# \r
-# xxx_USING_STDCALL = 0 Compiling MESA without __stdcall. I like this:)\r
-# \r
-\r
-# In fact, GL_USING_STDCALL and GLUT_USING_STDCALL can be\r
-# different. For example:\r
-#\r
-# GL_USING_STDCALL = 0\r
-# GLUT_USING_STDCALL = 1\r
-# \r
-# Suggested setting:\r
-#\r
-# ALL_USING_STDCALL = 1\r
-#\r
-# That's default!\r
-#\r
-\r
-\r
-ALL_USING_STDCALL = 1\r
-\r
-\r
-ifeq ($(ALL_USING_STDCALL),1)\r
- GL_USING_STDCALL = 1\r
- GLUT_USING_STDCALL = 1\r
-else\r
- GL_USING_STDCALL = 0\r
- GLUT_USING_STDCALL = 0\r
-endif\r
+++ /dev/null
-# Makefile for Mesa for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-macro :
- @ macro=""
-.ifdef NOSHARE
-.else
- @ if f$getsyi("HW_MODEL") .ge. 1024 then macro= "/MACRO=(SHARE=1)"
-.endif
- $(MMS)$(MMSQUALIFIERS)'macro' all
-
-all :
- if f$search("lib.dir") .eqs. "" then create/directory [.lib]
- set default [.src]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.progs.util]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.demos]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.xdemos]
- $(MMS)$(MMSQUALIFIERS)
- if f$search("[-]tests.DIR") .nes. "" then pipe set default [-.tests] ; $(MMS)$(MMSQUALIFIERS)
+++ /dev/null
-# Makefile for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-
-#vms
-.ifdef SHARE
-GL_SHAR = libMesaGL.exe
-GLU_SHAR = libMesaGLU.exe
-GLUT_SHAR = libglut.exe
-.endif
-GL_LIB = libMesaGL.olb
-GLU_LIB = libMesaGLU.olb
-GLUT_LIB = libglut.olb
-CC = cc
-CXX = cxx/define=(LIBRARYBUILD=1)/assume=(nostdnew,noglobal_array_new)
-CFLAGS1 =
-MAKELIB = library/create
-RANLIB = true
-.ifdef SHARE
-XLIBS = [--.vms]xlib_share/opt
-.else
-XLIBS = [--.vms]xlib/opt
-.endif
+++ /dev/null
-# Makefile for GLUT-based demo programs for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last update : 20 May 2005
-
-.first
- define gl [--.include.gl]
-
-.include [--]mms.config
-
-##### MACROS #####
-
-INCDIR = ([--.include],[-.util])
-CFLAGS =/include=$(INCDIR)/prefix=all/name=(as_is,short)/float=ieee/ieee=denorm
-
-.ifdef SHARE
-GL_LIBS = $(XLIBS)
-LIB_DEP = [--.lib]$(GL_SHAR) [--.lib]$(GLU_SHAR) [--.lib]$(GLUT_SHAR)
-.else
-GL_LIBS = [--.lib]libGLUT/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
-LIB_DEP = [--.lib]$(GL_LIB) [--.lib]$(GLU_LIB) [--.lib]$(GLUT_LIB)
-.endif
-
-
-PROGS = bounce.exe;,clearspd.exe;,drawpix.exe;,gamma.exe;,gears.exe;,\
- glinfo.exe;,glutfx.exe;,isosurf.exe;,morph3d.exe;,\
- paltex.exe;,pointblast.exe;,reflect.exe;,spectex.exe;,stex3d.exe;,\
- tessdemo.exe;,texcyl.exe;,texobj.exe;,trispd.exe;,winpos.exe;
-
-
-##### RULES #####
-.obj.exe :
- cxxlink $(MMS$TARGET_NAME),$(GL_LIBS)
-
-##### TARGETS #####
-default :
- $(MMS)$(MMSQUALIFIERS) $(PROGS)
-
-clean :
- delete *.obj;*
-
-realclean :
- delete $(PROGS)
- delete *.obj;*
-
-bounce.exe; : bounce.obj $(LIB_DEP)
-clearspd.exe; : clearspd.obj $(LIB_DEP)
-drawpix.exe; : drawpix.obj $(LIB_DEP) [-.util]readtex.obj
- cxxlink $(MMS$TARGET_NAME),[-.util]readtex.obj,$(GL_LIBS)
-gamma.exe; : gamma.obj $(LIB_DEP)
-gears.exe; : gears.obj $(LIB_DEP)
-glinfo.exe; : glinfo.obj $(LIB_DEP)
-glutfx.exe; : glutfx.obj $(LIB_DEP)
-isosurf.exe; : isosurf.obj $(LIB_DEP) [-.util]readtex.obj
- cxxlink $(MMS$TARGET_NAME),[-.util]readtex.obj,$(GL_LIBS)
-morph3d.exe; : morph3d.obj $(LIB_DEP)
-paltex.exe; : paltex.obj $(LIB_DEP)
-pointblast.exe; : pointblast.obj $(LIB_DEP)
-reflect.exe; : reflect.obj [-.util]readtex.obj [-.util]showbuffer.obj\
- $(LIB_DEP)
- cxxlink $(MMS$TARGET_NAME),[-.util]readtex,showbuffer,$(GL_LIBS)
-spectex.exe; : spectex.obj $(LIB_DEP)
-stex3d.exe; : stex3d.obj $(LIB_DEP)
-tessdemo.exe; : tessdemo.obj $(LIB_DEP)
-texcyl.exe; : texcyl.obj [-.util]readtex.obj $(LIB_DEP)
- cxxlink $(MMS$TARGET_NAME),[-.util]readtex.obj,$(GL_LIBS)
-texobj.exe; : texobj.obj $(LIB_DEP)
-trispd.exe; : trispd.obj $(LIB_DEP)
-winpos.exe; : winpos.obj [-.util]readtex.obj $(LIB_DEP)
- cxxlink $(MMS$TARGET_NAME),[-.util]readtex.obj,$(GL_LIBS)
-
-
-bounce.obj : bounce.c
-clearspd.obj : clearspd.c
-drawpix.obj : drawpix.c
-gamma.obj : gamma.c
-gears.obj : gears.c
-glinfo.obj : glinfo.c
-glutfx.obj : glutfx.c
-isosurf.obj : isosurf.c
-morph3d.obj : morph3d.c
-paltex.obj : paltex.c
-pointblast.obj : pointblast.c
-reflect.obj : reflect.c
-spectex.obj : spectex.c
-stex3d.obj : stex3d.c
-tessdemo.obj : tessdemo.c
-texcyl.obj : texcyl.c
-texobj.obj : texobj.c
-trispd.obj : trispd.c
-winpos.obj : winpos.c
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 4.0
-#
-# Copyright (C) 1999 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# DOS/DJGPP samples makefile v1.6 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-
-#
-# Available options:
-#
-# Environment variables:
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most DMesa code and requires fxMesa.
-# As a consequence, you'll need the DJGPP Glide3
-# library to build any application.
-# default = no
-# DXE=1 use DXE modules (see README.DJ for details).
-# default = no
-#
-# Targets:
-# <file.exe> build a specific file
-#
-
-
-
-.PHONY: all
-.SUFFIXES: .c .o .exe
-.SECONDARY: ../util/readtex.o ../util/showbuffer.o
-
-TOP = ../..
-GLIDE ?= $(TOP)/glide3
-
-CC = gcc
-CFLAGS = -Wall -W -pedantic
-CFLAGS += -O2 -ffast-math
-CFLAGS += -I$(TOP)/include -I../util
-CFLAGS += -DGLUT_IMPORT_LIB
-ifeq ($(FX),1)
-CFLAGS += -DFX
-endif
-
-LD = gxx
-LDFLAGS = -s -L$(TOP)/lib
-
-ifeq ($(DXE),1)
-LDLIBS += -liglut -liglu -ligl
-else
-LDLIBS = -lglut -lglu -lgl
-ifeq ($(FX),1)
-LDFLAGS += -L$(GLIDE)/lib
-LDLIBS += -lgld3x
-endif
-endif
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-%.exe: ../util/readtex.o ../util/showbuffer.o %.o
- $(LD) -o $@ $(LDFLAGS) $^ $(LDLIBS)
-
-all:
- $(error Must specify <filename.exe> to build)
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 4.0
-#
-# Copyright (C) 1999 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# MinGW samples makefile v1.2 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-# MinGW samples makefile updated for Mesa 7.0
-#
-# Updated : by Heromyth, on 2007-7-21
-# Email : zxpmyth@yahoo.com.cn
-# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
-# The others havn't been tested yet.
-# 2) The generated DLLs are *not* compatible with the ones built
-# with the other compilers like VC8, especially for GLUT.
-# 3) Although more tests are needed, it can be used individually!
-
-#
-# Available options:
-#
-# Environment variables:
-#
-# Targets:
-# <file.exe> build a specific file
-#
-
-
-
-.PHONY: all
-.SUFFIXES: .c .o .exe
-.SECONDARY: ../util/readtex.o ../util/showbuffer.o
-
-TOP = ../..
-
-include $(TOP)/configs/config.mgw
-ALL_USING_STDCALL ?= 1
-GL_USING_STDCALL ?= 1
-GLUT_USING_STDCALL ?= 1
-
-CC = mingw32-gcc
-CFLAGS = -Wall -pedantic
-CFLAGS += -O2 -ffast-math
-CFLAGS += -I$(TOP)/include -I../util
-ifeq ($(FX),1)
- CFLAGS += -DFX
-endif
-
-CFLAGS += -DGLUT_DISABLE_ATEXIT_HACK
-
-ifeq ($(GL_USING_STDCALL),0)
- CFLAGS += -DGL_NO_STDCALL
-endif
-
-ifeq ($(GLUT_USING_STDCALL),1)
- CFLAGS += -D_STDCALL_SUPPORTED
-else
- CFLAGS += -DGLUT_NO_STDCALL
-endif
-
-
-LD = mingw32-g++
-LDFLAGS = -s -L$(TOP)/lib
-
-LDLIBS = -lglut32 -lglu32 -lopengl32
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-%.exe: ../util/readtex.o ../util/showbuffer.o %.o
- $(LD) -o $@ $(LDFLAGS) $^ $(LDLIBS)
-
-all:
- $(error Must specify <filename.exe> to build)
+++ /dev/null
-# Makefile for GLUT-based demo programs for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-
-.first
- define gl [--.include.gl]
-
-.include [--]mms.config
-
-##### MACROS #####
-
-INCDIR = ([--.include],[-.util])
-CFLAGS = /include=$(INCDIR)/prefix=all/name=(as_is,short)/float=ieee/ieee=denorm
-
-.ifdef SHARE
-GL_LIBS = $(XLIBS)
-.else
-GL_LIBS = [--.lib]libGLUT/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
-.endif
-
-LIB_DEP = [--.lib]$(GL_LIB) [--.lib]$(GLU_LIB) [--.lib]$(GLUT_LIB)
-
-PROGS = cva.exe,\
- dinoshade.exe,\
- fogcoord.exe,\
- manytex.exe,\
- multipal.exe,\
- projtex.exe,\
- seccolor.exe,\
- sharedtex.exe,\
- texline.exe,\
- texwrap.exe,\
- vptest1.exe,\
- vptest2.exe,\
- vptest3.exe,\
- vptorus.exe,\
- vpwarpmesh.exe
-
-##### RULES #####
-.obj.exe :
- cxxlink $(MMS$TARGET_NAME),$(GL_LIBS)
-
-##### TARGETS #####
-default :
- $(MMS)$(MMSQUALIFIERS) $(PROGS)
-
-clean :
- delete *.obj;*
-
-realclean :
- delete $(PROGS)
- delete *.obj;*
-
-cva.exe : cva.obj $(LIB_DEP)
-dinoshade.exe : dinoshade.obj $(LIB_DEP)
-fogcoord.exe : fogcoord.obj $(LIB_DEP)
-manytex.exe : manytex.obj $(LIB_DEP)
-multipal.exe : multipal.obj $(LIB_DEP)
-projtex.exe : projtex.obj $(LIB_DEP)
-seccolor.exe : seccolor.obj $(LIB_DEP)
-sharedtex.exe : sharedtex.obj $(LIB_DEP)
-texline.exe : texline.obj $(LIB_DEP)
-texwrap.exe : texwrap.obj $(LIB_DEP)
-vptest1.exe : vptest1.obj $(LIB_DEP)
-vptest2.exe : vptest2.obj $(LIB_DEP)
-vptest3.exe : vptest3.obj $(LIB_DEP)
-vptorus.exe : vptorus.obj $(LIB_DEP)
-vpwarpmesh.exe : vpwarpmesh.obj $(LIB_DEP)
-
-cva.obj : cva.c
-dinoshade.obj : dinoshade.c
-fogcoord.obj : fogcoord.c
-manytex.obj : manytex.c
-multipal.obj : multipal.c
-projtex.obj : projtex.c
-seccolor.obj : seccolor.c
-sharedtex.obj : sharedtex.c
-texline.obj : texline.c
-texwrap.obj : texwrap.c
-vptest1.obj : vptest1.c
-vptest2.obj : vptest2.c
-vptest3.obj : vptest3.c
-vptorus.obj : vptorus.c
-vpwarpmesh.obj : vpwarpmesh.c
+++ /dev/null
-# Makefile for GLUT-based demo programs for VMS
-# contributed by Jouk Jansen joukj@crys.chem.uva.nl
-
-
-.first
- define gl [--.include.gl]
-
-.include [--]mms.config
-
-##### MACROS #####
-
-INCDIR = ([--.include],[-.util])
-CFLAGS = /include=$(INCDIR)/prefix=all/name=(as_is,short)/float=ieee/ieee=denorm
-
-.ifdef SHARE
-GL_LIBS = $(XLIBS)
-LIB_DEP = [--.lib]$(GL_SHAR) [--.lib]$(GLU_SHAR) [--.lib]$(GLUT_SHAR)
-.else
-GL_LIBS = [--.lib]libGLUT/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
-LIB_DEP = [--.lib]$(GL_LIB) [--.lib]$(GLU_LIB) [--.lib]$(GLUT_LIB)
-.endif
-
-
-OBJS =readtex.obj,showbuffer.obj
-
-
-##### RULES #####
-.obj.exe :
- cxxlink $(MMS$TARGET_NAME),$(GL_LIBS)
-
-##### TARGETS #####
-default :
- $(MMS)$(MMSQUALIFIERS) $(OBJS)
-
-clean :
- delete *.obj;*
-
-realclean :
- delete *.obj;*
-
-readtex.obj : readtex.c
-showbuffer.obj : showbuffer.c
+++ /dev/null
-# Makefile for GLUT-based demo programs for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-
-.first
- define gl [--.include.gl]
-
-.include [--]mms.config
-
-##### MACROS #####
-
-INCDIR = ([--.include],[-.util])
-CFLAGS = /include=$(INCDIR)/prefix=all/name=(as_is,short)/nowarn/float=ieee/ieee=denorm
-
-.ifdef SHARE
-GL_LIBS = $(XLIBS)
-.else
-GL_LIBS = [--.lib]libGLUT/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
-.endif
-
-LIB_DEP = [--.lib]$(GL_LIB) [--.lib]$(GLU_LIB) [--.lib]$(GLUT_LIB)
-
-PROGS =glthreads.exe,\
- glxdemo.exe,\
- glxgears.exe,\
- glxheads.exe,\
- glxinfo.exe,\
- glxpixmap.exe,\
- manywin.exe,\
- offset.exe,\
- pbinfo.exe,\
- pbdemo.exe,\
- wincopy.exe,\
- xdemo.exe,\
- xfont.exe
-
-##### RULES #####
-.obj.exe :
- cxxlink $(MMS$TARGET_NAME),$(GL_LIBS)
-
-##### TARGETS #####
-default :
- $(MMS)$(MMSQUALIFIERS) $(PROGS)
-
-clean :
- delete *.obj;*
-
-realclean :
- delete $(PROGS)
- delete *.obj;*
-
-
-glthreads.exe : glthreads.obj $(LIB_DEP)
-glxdemo.exe : glxdemo.obj $(LIB_DEP)
-glxgears.exe : glxgears.obj $(LIB_DEP)
-glxheads.exe : glxheads.obj $(LIB_DEP)
-glxinfo.exe : glxinfo.obj $(LIB_DEP)
-glxpixmap.exe : glxpixmap.obj $(LIB_DEP)
-manywin.exe : manywin.obj $(LIB_DEP)
-offset.exe : offset.obj $(LIB_DEP)
-pbinfo.exe : pbinfo.obj pbutil.obj $(LIB_DEP)
- cxxlink pbinfo.obj,pbutil.obj,$(GL_LIBS)
-pbdemo.exe : pbdemo.obj pbutil.obj $(LIB_DEP)
- cxxlink pbdemo.obj,pbutil.obj,$(GL_LIBS)
-wincopy.exe : wincopy.obj $(LIB_DEP)
-xdemo.exe : xdemo.obj $(LIB_DEP)
-xfont.exe :xfont.obj $(LIB_DEP)
-
-
-glthreads.obj : glthreads.c
-glxdemo.obj : glxdemo.c
-glxgears.obj : glxgears.c
-glxheads.obj : glxheads.c
-glxinfo.obj : glxinfo.c
-glxpixmap.obj : glxpixmap.c
-manywin.obj : manywin.c
-offset.obj : offset.c
-pbinfo.obj : pbinfo.c
-pbutil.obj : pbutil.c
-pbdemo.obj : pbdemo.c
-wincopy.obj : wincopy.c
-xdemo.obj : xdemo.c
-xfont.obj :xfont.c
+++ /dev/null
-# Makefile for Mesa for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-.include [-]mms.config
-
-all :
- set default [.mesa]
- $(MMS)$(MMSQUALIFIERS)
- set default [-]
-.ifdef SHARE
- $(MMS)$(MMSQUALIFIERS) [-.lib]$(GL_SHAR)
-.endif
- set default [.glu]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.glut.glx]
- $(MMS)$(MMSQUALIFIERS)
- set default [--]
-
-[-.lib]$(GL_SHAR) : [-.lib]$(GL_LIB)
- @ WRITE_ SYS$OUTPUT " generating libmesa.opt"
- @ library/extract=* [-.lib]$(GL_LIB)
- @ OPEN_/WRITE FILE libmesa.opt
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "! libmesa.opt generated by DESCRIP.$(MMS_EXT)"
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "IDENTIFICATION=""mesa5.1"""
- @ WRITE_ FILE "GSMATCH=LEQUAL,5,1
- @ WRITE_ FILE "libmesagl.obj"
- @ write_ file "sys$share:decw$xextlibshr/share"
- @ write_ file "sys$share:decw$xlibshr/share"
- @ write_ file "sys$share:pthread$rtl/share"
- @ CLOSE_ FILE
- @ $(MMS)$(MMSQUALIFIERS)/ignore=warning mesa_vms
- @ WRITE_ SYS$OUTPUT " linking ..."
- @ LINK_/NODEB/SHARE=[-.lib]$(GL_SHAR)/MAP=libmesa.map/FULL libmesa.opt/opt,\
- mesa_vms.opt/opt
- @ delete libmesagl.obj;*
-
-mesa_vms :
- @ WRITE_ SYS$OUTPUT " generating libmesa.map ..."
- @ LINK_/NODEB/NOSHARE/NOEXE/MAP=libmesa.map/FULL libmesa.opt/OPT
- @ WRITE_ SYS$OUTPUT " analyzing libmesa.map ..."
- @ @[-.vms]analyze_map.com libmesa.map mesa_vms.opt
+++ /dev/null
-# Makefile for Mesa for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-all :
-# PIPE is avalailable on VMS7.0 and higher. For lower versions split the
-#command in two conditional command. JJ
- if f$search("SYS$SYSTEM:CXX$COMPILER.EXE") .nes. "" then pipe set default [.sgi] ; $(MMS)$(MMSQUALIFIERS)
- if f$search("SYS$SYSTEM:CXX$COMPILER.EXE") .eqs. "" then pipe set default [.mesa] ; $(MMS)$(MMSQUALIFIERS)
- set default [-]
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 4.0
-#
-# Copyright (C) 1999 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# DOS/DJGPP glu makefile v1.5 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# Targets:
-# all: build GLU
-# clean: remove object files
-#
-
-
-
-.PHONY: all clean
-
-TOP = ../../..
-LIBDIR = $(TOP)/lib
-GLU_LIB = libglu.a
-GLU_DXE = glu.dxe
-GLU_IMP = libiglu.a
-
-export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH);$(LIBDIR);$(GLIDE)/lib
-
-CC = gcc
-CFLAGS += -I$(TOP)/include
-
-AR = ar
-ARFLAGS = crus
-
-HAVEDXE3 = $(wildcard $(DJDIR)/bin/dxe3gen.exe)
-
-ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = del $(subst /,\,$(1))
-else
-UNLINK = $(RM) $(1)
-endif
-
-CORE_SOURCES = \
- glu.c \
- mipmap.c \
- nurbs.c \
- nurbscrv.c \
- nurbssrf.c \
- nurbsutl.c \
- polytest.c \
- project.c \
- quadric.c \
- tess.c \
- tesselat.c
-
-SOURCES = $(CORE_SOURCES)
-
-OBJECTS = $(SOURCES:.c=.o)
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-
-all: $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLU_DXE) $(LIBDIR)/$(GLU_IMP)
-
-$(LIBDIR)/$(GLU_LIB): $(OBJECTS)
- $(AR) $(ARFLAGS) $@ $^
-
-$(LIBDIR)/$(GLU_DXE) $(LIBDIR)/$(GLU_IMP): $(OBJECTS)
-ifeq ($(HAVEDXE3),)
- $(warning Missing DXE3 package... Skipping $(GLU_DXE))
-else
- -dxe3gen -o $(LIBDIR)/$(GLU_DXE) -Y $(LIBDIR)/$(GLU_IMP) -D "MesaGLU DJGPP" -E _glu -P gl.dxe -U $^
-endif
-
-clean:
- -$(call UNLINK,*.o)
+++ /dev/null
-# Makefile for GLU for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-.first
- define gl [-.include.gl]
-
-.include [-]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = $disk2:[-.include]
-LIBDIR = [-.lib]
-CFLAGS = /include=$(INCDIR)/define=(FBIND=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = glu.c mipmap.c nurbs.c nurbscrv.c nurbssrf.c nurbsutl.c \
- polytest.c project.c quadric.c tess.c tesselat.c
-
-OBJECTS =glu.obj,mipmap.obj,nurbs.obj,nurbscrv.obj,nurbssrf.obj,nurbsutl.obj,\
- polytest.obj,project.obj,quadric.obj,tess.obj,tesselat.obj
-
-
-##### RULES #####
-
-VERSION=MesaGlu V3.2
-
-##### TARGETS #####
-
-# Make the library:
-$(LIBDIR)$(GLU_LIB) : $(OBJECTS)
-.ifdef SHARE
- @ WRITE_ SYS$OUTPUT " generating mesagl1.opt"
- @ OPEN_/WRITE FILE mesagl1.opt
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "! mesagl1.opt generated by DESCRIP.$(MMS_EXT)"
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "IDENTIFICATION=""$(VERSION)"""
- @ WRITE_ FILE "GSMATCH=LEQUAL,3,2
- @ WRITE_ FILE "$(OBJECTS)"
- @ WRITE_ FILE "[-.lib]libmesagl.exe/SHARE"
- @ WRITE_ FILE "SYS$SHARE:DECW$XEXTLIBSHR/SHARE"
- @ WRITE_ FILE "SYS$SHARE:DECW$XLIBSHR/SHARE"
- @ CLOSE_ FILE
- @ WRITE_ SYS$OUTPUT " generating mesagl.map ..."
- @ LINK_/NODEB/NOSHARE/NOEXE/MAP=mesagl.map/FULL mesagl1.opt/OPT
- @ WRITE_ SYS$OUTPUT " analyzing mesagl.map ..."
- @ @[-.vms]ANALYZE_MAP.COM mesagl.map mesagl.opt
- @ WRITE_ SYS$OUTPUT " linking $(GLU_LIB) ..."
- @ LINK_/noinform/NODEB/SHARE=$(GLU_LIB)/MAP=mesagl.map/FULL mesagl1.opt/opt,mesagl.opt/opt
-.else
- @ $(MAKELIB) $(GLU_LIB) $(OBJECTS)
-.endif
- @ rename $(GLU_LIB)* $(LIBDIR)
-
-clean :
- delete *.obj;*
- purge
-
-include mms_depend.
-
+++ /dev/null
-# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-glu.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h
-mipmap.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h
-nurbs.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h nurbs.h
-nurbscrv.obj : nurbs.h gluP.h [-.include.gl]gl.h [-.include.gl]glu.h
-nurbssrf.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h nurbs.h
-nurbsutl.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h nurbs.h
-project.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h
-quadric.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h
-tess.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h tess.h
-tess_fist.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h tess.h
-tess_hash.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h tess.h
-tess_heap.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h tess.h
-tess_clip.obj : gluP.h [-.include.gl]gl.h [-.include.gl]glu.h tess.h
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 4.0
-#
-# Copyright (C) 1999 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# DOS/DJGPP glu makefile v1.5 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# Targets:
-# all: build GLU
-# clean: remove object files
-#
-
-
-
-.PHONY: all clean
-
-TOP = ../../..
-LIBDIR = $(TOP)/lib
-GLU_LIB = libglu.a
-GLU_DXE = glu.dxe
-GLU_IMP = libiglu.a
-
-export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH);$(LIBDIR);$(GLIDE)/lib
-
-CC = gcc
-CFLAGS += -DNDEBUG -DLIBRARYBUILD -I$(TOP)/include -Iinclude
-CXX = gpp
-CXXFLAGS = $(CFLAGS) -Ilibnurbs/internals -Ilibnurbs/interface -Ilibnurbs/nurbtess
-
-AR = ar
-ARFLAGS = crus
-
-HAVEDXE3 = $(wildcard $(DJDIR)/bin/dxe3gen.exe)
-
-ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = del $(subst /,\,$(1))
-else
-UNLINK = $(RM) $(1)
-endif
-
-C_SOURCES = \
- libutil/error.c \
- libutil/glue.c \
- libutil/mipmap.c \
- libutil/project.c \
- libutil/quad.c \
- libutil/registry.c \
- libtess/dict.c \
- libtess/geom.c \
- libtess/memalloc.c \
- libtess/mesh.c \
- libtess/normal.c \
- libtess/priorityq.c \
- libtess/render.c \
- libtess/sweep.c \
- libtess/tess.c \
- libtess/tessmono.c
-
-CC_SOURCES = \
- libnurbs/interface/bezierEval.cc \
- libnurbs/interface/bezierPatch.cc \
- libnurbs/interface/bezierPatchMesh.cc \
- libnurbs/interface/glcurveval.cc \
- libnurbs/interface/glinterface.cc \
- libnurbs/interface/glrenderer.cc \
- libnurbs/interface/glsurfeval.cc \
- libnurbs/interface/incurveeval.cc \
- libnurbs/interface/insurfeval.cc \
- libnurbs/internals/arc.cc \
- libnurbs/internals/arcsorter.cc \
- libnurbs/internals/arctess.cc \
- libnurbs/internals/backend.cc \
- libnurbs/internals/basiccrveval.cc \
- libnurbs/internals/basicsurfeval.cc \
- libnurbs/internals/bin.cc \
- libnurbs/internals/bufpool.cc \
- libnurbs/internals/cachingeval.cc \
- libnurbs/internals/ccw.cc \
- libnurbs/internals/coveandtiler.cc \
- libnurbs/internals/curve.cc \
- libnurbs/internals/curvelist.cc \
- libnurbs/internals/curvesub.cc \
- libnurbs/internals/dataTransform.cc \
- libnurbs/internals/displaylist.cc \
- libnurbs/internals/flist.cc \
- libnurbs/internals/flistsorter.cc \
- libnurbs/internals/hull.cc \
- libnurbs/internals/intersect.cc \
- libnurbs/internals/knotvector.cc \
- libnurbs/internals/mapdesc.cc \
- libnurbs/internals/mapdescv.cc \
- libnurbs/internals/maplist.cc \
- libnurbs/internals/mesher.cc \
- libnurbs/internals/monoTriangulationBackend.cc \
- libnurbs/internals/monotonizer.cc \
- libnurbs/internals/mycode.cc \
- libnurbs/internals/nurbsinterfac.cc \
- libnurbs/internals/nurbstess.cc \
- libnurbs/internals/patch.cc \
- libnurbs/internals/patchlist.cc \
- libnurbs/internals/quilt.cc \
- libnurbs/internals/reader.cc \
- libnurbs/internals/renderhints.cc \
- libnurbs/internals/slicer.cc \
- libnurbs/internals/sorter.cc \
- libnurbs/internals/splitarcs.cc \
- libnurbs/internals/subdivider.cc \
- libnurbs/internals/tobezier.cc \
- libnurbs/internals/trimline.cc \
- libnurbs/internals/trimregion.cc \
- libnurbs/internals/trimvertpool.cc \
- libnurbs/internals/uarray.cc \
- libnurbs/internals/varray.cc \
- libnurbs/nurbtess/directedLine.cc \
- libnurbs/nurbtess/gridWrap.cc \
- libnurbs/nurbtess/monoChain.cc \
- libnurbs/nurbtess/monoPolyPart.cc \
- libnurbs/nurbtess/monoTriangulation.cc \
- libnurbs/nurbtess/partitionX.cc \
- libnurbs/nurbtess/partitionY.cc \
- libnurbs/nurbtess/polyDBG.cc \
- libnurbs/nurbtess/polyUtil.cc \
- libnurbs/nurbtess/primitiveStream.cc \
- libnurbs/nurbtess/quicksort.cc \
- libnurbs/nurbtess/rectBlock.cc \
- libnurbs/nurbtess/sampleComp.cc \
- libnurbs/nurbtess/sampleCompBot.cc \
- libnurbs/nurbtess/sampleCompRight.cc \
- libnurbs/nurbtess/sampleCompTop.cc \
- libnurbs/nurbtess/sampleMonoPoly.cc \
- libnurbs/nurbtess/sampledLine.cc \
- libnurbs/nurbtess/searchTree.cc
-
-SOURCES = $(C_SOURCES) $(CC_SOURCES)
-
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.cc.o:
- $(CXX) -o $@ $(CXXFLAGS) -c $<
-
-all: $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLU_DXE) $(LIBDIR)/$(GLU_IMP)
-
-$(LIBDIR)/$(GLU_LIB): $(OBJECTS)
- $(AR) $(ARFLAGS) $@ $^
-
-$(LIBDIR)/$(GLU_DXE) $(LIBDIR)/$(GLU_IMP): $(OBJECTS)
-ifeq ($(HAVEDXE3),)
- $(warning Missing DXE3 package... Skipping $(GLU_DXE))
-else
- -dxe3gen -o $(LIBDIR)/$(GLU_DXE) -Y $(LIBDIR)/$(GLU_IMP) -D "MesaGLU/SGI DJGPP" -E _glu -P gl.dxe -U $^
-endif
-
-clean:
- -$(call UNLINK,libutil/*.o)
- -$(call UNLINK,libtess/*.o)
- -$(call UNLINK,libnurbs/interface/*.o)
- -$(call UNLINK,libnurbs/internals/*.o)
- -$(call UNLINK,libnurbs/nurbtess/*.o)
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 5.1
-#
-# Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# MinGW core makefile v1.4 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-# MinGW core-glu makefile updated for Mesa 7.0
-#
-# Updated : by Heromyth, on 2007-7-21
-# Email : zxpmyth@yahoo.com.cn
-# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
-# The others havn't been tested yet.
-# 2) The generated DLLs are *not* compatible with the ones built
-# with the other compilers like VC8, especially for GLUT.
-# 3) Although more tests are needed, it can be used individually!
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most WMesa code and requires fxMesa.
-# As a consequence, you'll need the Win32 Glide3
-# library to build any application.
-# default = no
-# ICD=1 build the installable client driver interface
-# (windows opengl driver interface)
-# default = no
-# X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
-# default = no
-#
-# Targets:
-# all: build GL
-# clean: remove object files
-#
-
-
-
-.PHONY: all clean
-.INTERMEDIATE: x86/gen_matypes.exe
-.SUFFIXES: .rc .res
-
-# Set this to the prefix of your build tools, i.e. mingw32-
-TOOLS_PREFIX = mingw32-
-
-TOP = ../../..
-
-LIBDIR = $(TOP)/lib
-
-GLU_DLL = glu32.dll
-GLU_IMP = libglu32.a
-GLU_DEF = glu.def
-
-include $(TOP)/configs/config.mgw
-GL_USING_STDCALL ?= 1
-
-LDLIBS = -L$(LIBDIR) -lopengl32
-LDFLAGS = -Wl,--out-implib=$(LIBDIR)/$(GLU_IMP) -Wl,--output-def=$(LIBDIR)/$(GLU_DEF)
-
-CFLAGS += -DBUILD_GLU32 -D_DLL
-
-ifeq ($(GL_USING_STDCALL),1)
- LDFLAGS += -Wl,--add-stdcall-alias
-else
- CFLAGS += -DGL_NO_STDCALL
-endif
-
-CC = gcc
-CFLAGS += -DNDEBUG -DLIBRARYBUILD -I$(TOP)/include -Iinclude
-CXX = g++
-CXXFLAGS = $(CFLAGS) -Ilibnurbs/internals -Ilibnurbs/interface -Ilibnurbs/nurbtess
-
-AR = ar
-ARFLAGS = crus
-
-UNLINK = del $(subst /,\,$(1))
-ifneq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = $(RM) $(1)
-endif
-ifneq ($(wildcard $(addsuffix /rm,$(subst :, ,$(PATH)))),)
-UNLINK = $(RM) $(1)
-endif
-
-C_SOURCES = \
- libutil/error.c \
- libutil/glue.c \
- libutil/mipmap.c \
- libutil/project.c \
- libutil/quad.c \
- libutil/registry.c \
- libtess/dict.c \
- libtess/geom.c \
- libtess/memalloc.c \
- libtess/mesh.c \
- libtess/normal.c \
- libtess/priorityq.c \
- libtess/render.c \
- libtess/sweep.c \
- libtess/tess.c \
- libtess/tessmono.c
-
-CC_SOURCES = \
- libnurbs/interface/bezierEval.cc \
- libnurbs/interface/bezierPatch.cc \
- libnurbs/interface/bezierPatchMesh.cc \
- libnurbs/interface/glcurveval.cc \
- libnurbs/interface/glinterface.cc \
- libnurbs/interface/glrenderer.cc \
- libnurbs/interface/glsurfeval.cc \
- libnurbs/interface/incurveeval.cc \
- libnurbs/interface/insurfeval.cc \
- libnurbs/internals/arc.cc \
- libnurbs/internals/arcsorter.cc \
- libnurbs/internals/arctess.cc \
- libnurbs/internals/backend.cc \
- libnurbs/internals/basiccrveval.cc \
- libnurbs/internals/basicsurfeval.cc \
- libnurbs/internals/bin.cc \
- libnurbs/internals/bufpool.cc \
- libnurbs/internals/cachingeval.cc \
- libnurbs/internals/ccw.cc \
- libnurbs/internals/coveandtiler.cc \
- libnurbs/internals/curve.cc \
- libnurbs/internals/curvelist.cc \
- libnurbs/internals/curvesub.cc \
- libnurbs/internals/dataTransform.cc \
- libnurbs/internals/displaylist.cc \
- libnurbs/internals/flist.cc \
- libnurbs/internals/flistsorter.cc \
- libnurbs/internals/hull.cc \
- libnurbs/internals/intersect.cc \
- libnurbs/internals/knotvector.cc \
- libnurbs/internals/mapdesc.cc \
- libnurbs/internals/mapdescv.cc \
- libnurbs/internals/maplist.cc \
- libnurbs/internals/mesher.cc \
- libnurbs/internals/monoTriangulationBackend.cc \
- libnurbs/internals/monotonizer.cc \
- libnurbs/internals/mycode.cc \
- libnurbs/internals/nurbsinterfac.cc \
- libnurbs/internals/nurbstess.cc \
- libnurbs/internals/patch.cc \
- libnurbs/internals/patchlist.cc \
- libnurbs/internals/quilt.cc \
- libnurbs/internals/reader.cc \
- libnurbs/internals/renderhints.cc \
- libnurbs/internals/slicer.cc \
- libnurbs/internals/sorter.cc \
- libnurbs/internals/splitarcs.cc \
- libnurbs/internals/subdivider.cc \
- libnurbs/internals/tobezier.cc \
- libnurbs/internals/trimline.cc \
- libnurbs/internals/trimregion.cc \
- libnurbs/internals/trimvertpool.cc \
- libnurbs/internals/uarray.cc \
- libnurbs/internals/varray.cc \
- libnurbs/nurbtess/directedLine.cc \
- libnurbs/nurbtess/gridWrap.cc \
- libnurbs/nurbtess/monoChain.cc \
- libnurbs/nurbtess/monoPolyPart.cc \
- libnurbs/nurbtess/monoTriangulation.cc \
- libnurbs/nurbtess/partitionX.cc \
- libnurbs/nurbtess/partitionY.cc \
- libnurbs/nurbtess/polyDBG.cc \
- libnurbs/nurbtess/polyUtil.cc \
- libnurbs/nurbtess/primitiveStream.cc \
- libnurbs/nurbtess/quicksort.cc \
- libnurbs/nurbtess/rectBlock.cc \
- libnurbs/nurbtess/sampleComp.cc \
- libnurbs/nurbtess/sampleCompBot.cc \
- libnurbs/nurbtess/sampleCompRight.cc \
- libnurbs/nurbtess/sampleCompTop.cc \
- libnurbs/nurbtess/sampleMonoPoly.cc \
- libnurbs/nurbtess/sampledLine.cc \
- libnurbs/nurbtess/searchTree.cc
-
-SOURCES = $(C_SOURCES) $(CC_SOURCES)
-
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.cc.o:
- $(CXX) -o $@ $(CXXFLAGS) -c $<
-
-
-all: $(LIBDIR) $(LIBDIR)/$(GLU_DLL) $(LIBDIR)/$(GLU_IMP)
-
-$(LIBDIR):
- mkdir -p $(LIBDIR)
-
-$(LIBDIR)/$(GLU_DLL) $(LIBDIR)/$(GLU_IMP): $(OBJECTS)
- g++ -shared -fPIC -o $(LIBDIR)/$(GLU_DLL) $(LDFLAGS) \
- $^ $(LDLIBS)
-
-
-
-clean:
- -$(call UNLINK,libutil/*.o)
- -$(call UNLINK,libtess/*.o)
- -$(call UNLINK,libnurbs/interface/*.o)
- -$(call UNLINK,libnurbs/internals/*.o)
- -$(call UNLINK,libnurbs/nurbtess/*.o)
+++ /dev/null
-# Makefile for GLU for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-.first
- define gl [---.include.gl]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR =([-.include],[.include],[.internals],[.libnurbs.internals],\
- [.libnurbs.interface],[.libnurbs.nurbtess])
-LIBDIR = [---.lib]
-CFLAGS = /include=$(INCDIR)/name=(as_is,short)/float=ieee/ieee=denorm
-
-LU_OBJECTS=\
- [.libutil]error.obj, \
- [.libutil]glue.obj, \
- [.libutil]mipmap.obj,\
- [.libutil]project.obj,\
- [.libutil]quad.obj, \
- [.libutil]registry.obj
-
-LT_OBJECTS=[.libtess]dict.obj, \
- [.libtess]geom.obj, \
- [.libtess]memalloc.obj,\
- [.libtess]mesh.obj, \
- [.libtess]normal.obj,\
- [.libtess]priorityq.obj,\
- [.libtess]render.obj,\
- [.libtess]sweep.obj, \
- [.libtess]tess.obj, \
- [.libtess]tessmono.obj
-
-LI_OBJECTS=[.libnurbs.interface]bezierEval.obj, \
- [.libnurbs.interface]bezierPatch.obj, \
- [.libnurbs.interface]bezierPatchMesh.obj, \
- [.libnurbs.interface]glcurveval.obj, \
- [.libnurbs.interface]glinterface.obj
-
-LI_OBJECTS1=[.libnurbs.interface]glrenderer.obj, \
- [.libnurbs.interface]glsurfeval.obj, \
- [.libnurbs.interface]incurveeval.obj, \
- [.libnurbs.interface]insurfeval.obj
-
-LI2_OBJECTS=[.libnurbs.internals]arc.obj, \
- [.libnurbs.internals]arcsorter.obj, \
- [.libnurbs.internals]arctess.obj, \
- [.libnurbs.internals]backend.obj, \
- [.libnurbs.internals]basiccrveval.obj, \
- [.libnurbs.internals]basicsurfeval.obj
-
-LI2_OBJECTS1=[.libnurbs.internals]bin.obj, \
- [.libnurbs.internals]bufpool.obj, \
- [.libnurbs.internals]cachingeval.obj, \
- [.libnurbs.internals]ccw.obj, \
- [.libnurbs.internals]coveandtiler.obj, \
- [.libnurbs.internals]curve.obj, \
- [.libnurbs.internals]curvelist.obj
-
-LI2_OBJECTS2=[.libnurbs.internals]curvesub.obj, \
- [.libnurbs.internals]dataTransform.obj, \
- [.libnurbs.internals]displaylist.obj, \
- [.libnurbs.internals]flist.obj, \
- [.libnurbs.internals]flistsorter.obj
-
-LI2_OBJECTS3=[.libnurbs.internals]hull.obj, \
- [.libnurbs.internals]intersect.obj, \
- [.libnurbs.internals]knotvector.obj, \
- [.libnurbs.internals]mapdesc.obj
-
-LI2_OBJECTS4=[.libnurbs.internals]mapdescv.obj, \
- [.libnurbs.internals]maplist.obj, \
- [.libnurbs.internals]mesher.obj, \
- [.libnurbs.internals]monoTriangulationBackend.obj,\
- [.libnurbs.internals]monotonizer.obj
-
-LI2_OBJECTS5=[.libnurbs.internals]mycode.obj, \
- [.libnurbs.internals]nurbsinterfac.obj, \
- [.libnurbs.internals]nurbstess.obj, \
- [.libnurbs.internals]patch.obj
-
-LI2_OBJECTS6=[.libnurbs.internals]patchlist.obj, \
- [.libnurbs.internals]quilt.obj, \
- [.libnurbs.internals]reader.obj, \
- [.libnurbs.internals]renderhints.obj, \
- [.libnurbs.internals]slicer.obj
-
-LI2_OBJECTS7=[.libnurbs.internals]sorter.obj, \
- [.libnurbs.internals]splitarcs.obj, \
- [.libnurbs.internals]subdivider.obj, \
- [.libnurbs.internals]tobezier.obj
-
-LI2_OBJECTS8=[.libnurbs.internals]trimline.obj, \
- [.libnurbs.internals]trimregion.obj, \
- [.libnurbs.internals]trimvertpool.obj, \
- [.libnurbs.internals]uarray.obj, \
- [.libnurbs.internals]varray.obj
-
-LN_OBJECTS=[.libnurbs.nurbtess]directedLine.obj, \
- [.libnurbs.nurbtess]gridWrap.obj, \
- [.libnurbs.nurbtess]monoChain.obj, \
- [.libnurbs.nurbtess]monoPolyPart.obj, \
- [.libnurbs.nurbtess]monoTriangulation.obj
-
-LN_OBJECTS1=[.libnurbs.nurbtess]partitionX.obj, \
- [.libnurbs.nurbtess]partitionY.obj, \
- [.libnurbs.nurbtess]polyDBG.obj
-
-LN_OBJECTS2=[.libnurbs.nurbtess]polyUtil.obj, \
- [.libnurbs.nurbtess]primitiveStream.obj, \
- [.libnurbs.nurbtess]quicksort.obj, \
- [.libnurbs.nurbtess]rectBlock.obj
-
-LN_OBJECTS3=[.libnurbs.nurbtess]sampleComp.obj, \
- [.libnurbs.nurbtess]sampleCompBot.obj, \
- [.libnurbs.nurbtess]sampleCompRight.obj
-
-LN_OBJECTS4=[.libnurbs.nurbtess]sampleCompTop.obj, \
- [.libnurbs.nurbtess]sampleMonoPoly.obj,\
- [.libnurbs.nurbtess]sampledLine.obj, \
- [.libnurbs.nurbtess]searchTree.obj
-
-##### RULES #####
-
-VERSION=MesaGlu V3.5
-
-##### TARGETS #####
-
-# Make the library:
-$(LIBDIR)$(GLU_LIB) : $(LU_OBJECTS) $(LT_OBJECTS) $(LI_OBJECTS) $(LI_OBJECTS1)\
- $(LI2_OBJECTS) $(LI2_OBJECTS1) $(LI2_OBJECTS2)\
- $(LI2_OBJECTS3) $(LI2_OBJECTS4) $(LI2_OBJECTS5)\
- $(LI2_OBJECTS6) $(LI2_OBJECTS7) $(LI2_OBJECTS8)\
- $(LN_OBJECTS) $(LN_OBJECTS1) $(LN_OBJECTS2)\
- $(LN_OBJECTS3) $(LN_OBJECTS4)
- @ $(MAKELIB) $(GLU_LIB) $(LU_OBJECTS),$(LT_OBJECTS),$(LI_OBJECTS),\
- $(LI2_OBJECTS),$(LN_OBJECTS)
- @ rename $(GLU_LIB)* $(LIBDIR)
-.ifdef SHARE
- @ WRITE_ SYS$OUTPUT " generating mesagl1.opt"
- @ OPEN_/WRITE FILE mesagl1.opt
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "! mesagl1.opt generated by DESCRIP.$(MMS_EXT)"
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "IDENTIFICATION=""$(VERSION)"""
- @ WRITE_ FILE "GSMATCH=LEQUAL,3,5
- @ WRITE_ FILE "$(LU_OBJECTS)"
- @ WRITE_ FILE "$(LT_OBJECTS)"
- @ WRITE_ FILE "$(LI_OBJECTS)"
- @ WRITE_ FILE "$(LI_OBJECTS1)"
- @ WRITE_ FILE "$(LI2_OBJECTS)"
- @ WRITE_ FILE "$(LI2_OBJECTS1)"
- @ WRITE_ FILE "$(LI2_OBJECTS2)"
- @ WRITE_ FILE "$(LI2_OBJECTS3)"
- @ WRITE_ FILE "$(LI2_OBJECTS4)"
- @ WRITE_ FILE "$(LI2_OBJECTS5)"
- @ WRITE_ FILE "$(LI2_OBJECTS6)"
- @ WRITE_ FILE "$(LI2_OBJECTS7)"
- @ WRITE_ FILE "$(LI2_OBJECTS8)"
- @ WRITE_ FILE "$(LN_OBJECTS)"
- @ WRITE_ FILE "$(LN_OBJECTS1)"
- @ WRITE_ FILE "$(LN_OBJECTS2)"
- @ WRITE_ FILE "$(LN_OBJECTS3)"
- @ WRITE_ FILE "$(LN_OBJECTS4)"
- @ WRITE_ FILE "[---.lib]libmesagl.exe/SHARE"
- @ WRITE_ FILE "SYS$SHARE:DECW$XEXTLIBSHR/SHARE"
- @ WRITE_ FILE "SYS$SHARE:DECW$XLIBSHR/SHARE"
- @ CLOSE_ FILE
-# @ WRITE_ SYS$OUTPUT " generating mesagl.map ..."
-# @ CXXLINK_/NODEB/NOSHARE/NOEXE/MAP=mesagl.map/FULL mesagl1.opt/OPT
-# @ WRITE_ SYS$OUTPUT " analyzing mesagl.map ..."
-# @ @[-.vms]ANALYZE_MAP.COM mesagl.map mesagl.opt
- @ WRITE_ SYS$OUTPUT " linking $(GLU_SHAR) ..."
-# @ CXXLINK_/noinform/NODEB/SHARE=$(GLU_SHAR)/MAP=mesagl.map/FULL mesagl1.opt/opt,mesagl.opt/opt
- @ CXXLINK_/noinform/NODEB/SHARE=$(GLU_SHAR)/MAP=mesagl.map/FULL mesagl1.opt/opt,mesaglu.opt/opt
- @ rename $(GLU_SHAR)* $(LIBDIR)
-.endif
-
-clean :
- delete [...]*.obj;*
- purge
-
-[.libutil]error.obj : [.libutil]error.c
- $(CC) $(CFLAGS) /obj=[.libutil]error.obj [.libutil]error.c
-
-[.libutil]glue.obj : [.libutil]glue.c
- $(CC) $(CFLAGS) /obj=[.libutil]glue.obj [.libutil]glue.c
-
-[.libutil]mipmap.obj : [.libutil]mipmap.c
- $(CC) $(CFLAGS) /obj=[.libutil]mipmap.obj [.libutil]mipmap.c
-
-[.libutil]project.obj : [.libutil]project.c
- $(CC) $(CFLAGS) /obj=[.libutil]project.obj [.libutil]project.c
-
-[.libutil]quad.obj : [.libutil]quad.c
- $(CC) $(CFLAGS) /obj=[.libutil]quad.obj [.libutil]quad.c
-
-[.libutil]registry.obj : [.libutil]registry.c
- $(CC) $(CFLAGS) /obj=[.libutil]registry.obj [.libutil]registry.c
-
-[.libtess]dict.obj : [.libtess]dict.c
- $(CC) $(CFLAGS) /obj=[.libtess]dict.obj [.libtess]dict.c
-
-[.libtess]geom.obj : [.libtess]geom.c
- $(CC) $(CFLAGS) /obj=[.libtess]geom.obj [.libtess]geom.c
-
-[.libtess]memalloc.obj : [.libtess]memalloc.c
- $(CC) $(CFLAGS) /obj=[.libtess]memalloc.obj [.libtess]memalloc.c
-
-[.libtess]mesh.obj : [.libtess]mesh.c
- $(CC) $(CFLAGS) /obj=[.libtess]mesh.obj [.libtess]mesh.c
-
-[.libtess]normal.obj : [.libtess]normal.c
- $(CC) $(CFLAGS) /obj=[.libtess]normal.obj [.libtess]normal.c
-
-[.libtess]priorityq.obj : [.libtess]priorityq.c
- $(CC) $(CFLAGS) /obj=[.libtess]priorityq.obj [.libtess]priorityq.c
-
-[.libtess]render.obj : [.libtess]render.c
- $(CC) $(CFLAGS) /obj=[.libtess]render.obj [.libtess]render.c
-
-[.libtess]sweep.obj : [.libtess]sweep.c
- $(CC) $(CFLAGS) /obj=[.libtess]sweep.obj [.libtess]sweep.c
-
-[.libtess]tess.obj : [.libtess]tess.c
- $(CC) $(CFLAGS) /obj=[.libtess]tess.obj [.libtess]tess.c
-
-[.libtess]tessmono.obj : [.libtess]tessmono.c
- $(CC) $(CFLAGS) /obj=[.libtess]tessmono.obj [.libtess]tessmono.c
-
-[.libnurbs.interface]bezierEval.obj : [.libnurbs.interface]bezierEval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]bezierEval.obj [.libnurbs.interface]bezierEval.cc
-
-[.libnurbs.interface]bezierPatch.obj : [.libnurbs.interface]bezierPatch.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]bezierPatch.obj [.libnurbs.interface]bezierPatch.cc
-
-[.libnurbs.interface]bezierPatchMesh.obj : [.libnurbs.interface]bezierPatchMesh.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]bezierPatchMesh.obj [.libnurbs.interface]bezierPatchMesh.cc
-
-[.libnurbs.interface]glcurveval.obj : [.libnurbs.interface]glcurveval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]glcurveval.obj [.libnurbs.interface]glcurveval.cc
-
-[.libnurbs.interface]glinterface.obj : [.libnurbs.interface]glinterface.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]glinterface.obj [.libnurbs.interface]glinterface.cc
-
-[.libnurbs.interface]glrenderer.obj : [.libnurbs.interface]glrenderer.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]glrenderer.obj [.libnurbs.interface]glrenderer.cc
-
-[.libnurbs.interface]glsurfeval.obj : [.libnurbs.interface]glsurfeval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]glsurfeval.obj [.libnurbs.interface]glsurfeval.cc
-
-[.libnurbs.interface]incurveeval.obj : [.libnurbs.interface]incurveeval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]incurveeval.obj [.libnurbs.interface]incurveeval.cc
-
-[.libnurbs.interface]insurfeval.obj : [.libnurbs.interface]insurfeval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.interface]insurfeval.obj [.libnurbs.interface]insurfeval.cc
-
-[.libnurbs.internals]arc.obj : [.libnurbs.internals]arc.cc
- $(CXX) $(CFLAGS)/list/show=all /obj=[.libnurbs.internals]arc.obj [.libnurbs.internals]arc.cc
-
-[.libnurbs.internals]arcsorter.obj : [.libnurbs.internals]arcsorter.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]arcsorter.obj [.libnurbs.internals]arcsorter.cc
-
-[.libnurbs.internals]arctess.obj : [.libnurbs.internals]arctess.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]arctess.obj [.libnurbs.internals]arctess.cc
-
-[.libnurbs.internals]backend.obj : [.libnurbs.internals]backend.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]backend.obj [.libnurbs.internals]backend.cc
-
-[.libnurbs.internals]basiccrveval.obj : [.libnurbs.internals]basiccrveval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]basiccrveval.obj [.libnurbs.internals]basiccrveval.cc
-
-[.libnurbs.internals]basicsurfeval.obj : [.libnurbs.internals]basicsurfeval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]basicsurfeval.obj [.libnurbs.internals]basicsurfeval.cc
-
-[.libnurbs.internals]bin.obj : [.libnurbs.internals]bin.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]bin.obj [.libnurbs.internals]bin.cc
-
-[.libnurbs.internals]bufpool.obj : [.libnurbs.internals]bufpool.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]bufpool.obj [.libnurbs.internals]bufpool.cc
-
-[.libnurbs.internals]cachingeval.obj : [.libnurbs.internals]cachingeval.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]cachingeval.obj [.libnurbs.internals]cachingeval.cc
-
-[.libnurbs.internals]ccw.obj : [.libnurbs.internals]ccw.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]ccw.obj [.libnurbs.internals]ccw.cc
-
-[.libnurbs.internals]coveandtiler.obj : [.libnurbs.internals]coveandtiler.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]coveandtiler.obj [.libnurbs.internals]coveandtiler.cc
-
-[.libnurbs.internals]curve.obj : [.libnurbs.internals]curve.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]curve.obj [.libnurbs.internals]curve.cc
-
-[.libnurbs.internals]curvelist.obj : [.libnurbs.internals]curvelist.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]curvelist.obj [.libnurbs.internals]curvelist.cc
-
-[.libnurbs.internals]curvesub.obj : [.libnurbs.internals]curvesub.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]curvesub.obj [.libnurbs.internals]curvesub.cc
-
-[.libnurbs.internals]dataTransform.obj : [.libnurbs.internals]dataTransform.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]dataTransform.obj [.libnurbs.internals]dataTransform.cc
-
-[.libnurbs.internals]displaylist.obj : [.libnurbs.internals]displaylist.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]displaylist.obj [.libnurbs.internals]displaylist.cc
-
-[.libnurbs.internals]flist.obj : [.libnurbs.internals]flist.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]flist.obj [.libnurbs.internals]flist.cc
-
-[.libnurbs.internals]flistsorter.obj : [.libnurbs.internals]flistsorter.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]flistsorter.obj [.libnurbs.internals]flistsorter.cc
-
-[.libnurbs.internals]hull.obj : [.libnurbs.internals]hull.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]hull.obj [.libnurbs.internals]hull.cc
-
-[.libnurbs.internals]intersect.obj : [.libnurbs.internals]intersect.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]intersect.obj [.libnurbs.internals]intersect.cc
-
-[.libnurbs.internals]knotvector.obj : [.libnurbs.internals]knotvector.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]knotvector.obj [.libnurbs.internals]knotvector.cc
-
-[.libnurbs.internals]mapdesc.obj : [.libnurbs.internals]mapdesc.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]mapdesc.obj [.libnurbs.internals]mapdesc.cc
-
-[.libnurbs.internals]mapdescv.obj : [.libnurbs.internals]mapdescv.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]mapdescv.obj [.libnurbs.internals]mapdescv.cc
-
-[.libnurbs.internals]maplist.obj : [.libnurbs.internals]maplist.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]maplist.obj [.libnurbs.internals]maplist.cc
-
-[.libnurbs.internals]mesher.obj : [.libnurbs.internals]mesher.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]mesher.obj [.libnurbs.internals]mesher.cc
-
-[.libnurbs.internals]monoTriangulationBackend.obj : [.libnurbs.internals]monoTriangulationBackend.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]monoTriangulationBackend.obj [.libnurbs.internals]monoTriangulationBackend.cc
-
-[.libnurbs.internals]monotonizer.obj : [.libnurbs.internals]monotonizer.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]monotonizer.obj [.libnurbs.internals]monotonizer.cc
-
-[.libnurbs.internals]mycode.obj : [.libnurbs.internals]mycode.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]mycode.obj [.libnurbs.internals]mycode.cc
-
-[.libnurbs.internals]nurbsinterfac.obj : [.libnurbs.internals]nurbsinterfac.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]nurbsinterfac.obj [.libnurbs.internals]nurbsinterfac.cc
-
-[.libnurbs.internals]nurbstess.obj : [.libnurbs.internals]nurbstess.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]nurbstess.obj [.libnurbs.internals]nurbstess.cc
-
-[.libnurbs.internals]patch.obj : [.libnurbs.internals]patch.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]patch.obj [.libnurbs.internals]patch.cc
-
-[.libnurbs.internals]patchlist.obj : [.libnurbs.internals]patchlist.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]patchlist.obj [.libnurbs.internals]patchlist.cc
-
-[.libnurbs.internals]quilt.obj : [.libnurbs.internals]quilt.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]quilt.obj [.libnurbs.internals]quilt.cc
-
-[.libnurbs.internals]reader.obj : [.libnurbs.internals]reader.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]reader.obj [.libnurbs.internals]reader.cc
-
-[.libnurbs.internals]renderhints.obj : [.libnurbs.internals]renderhints.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]renderhints.obj [.libnurbs.internals]renderhints.cc
-
-[.libnurbs.internals]slicer.obj : [.libnurbs.internals]slicer.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]slicer.obj [.libnurbs.internals]slicer.cc
-
-[.libnurbs.internals]sorter.obj : [.libnurbs.internals]sorter.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]sorter.obj [.libnurbs.internals]sorter.cc
-
-[.libnurbs.internals]splitarcs.obj : [.libnurbs.internals]splitarcs.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]splitarcs.obj [.libnurbs.internals]splitarcs.cc
-
-[.libnurbs.internals]subdivider.obj : [.libnurbs.internals]subdivider.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]subdivider.obj [.libnurbs.internals]subdivider.cc
-
-[.libnurbs.internals]tobezier.obj : [.libnurbs.internals]tobezier.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]tobezier.obj [.libnurbs.internals]tobezier.cc
-
-[.libnurbs.internals]trimline.obj : [.libnurbs.internals]trimline.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]trimline.obj [.libnurbs.internals]trimline.cc
-
-[.libnurbs.internals]trimregion.obj : [.libnurbs.internals]trimregion.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]trimregion.obj [.libnurbs.internals]trimregion.cc
-
-[.libnurbs.internals]trimvertpool.obj : [.libnurbs.internals]trimvertpool.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]trimvertpool.obj [.libnurbs.internals]trimvertpool.cc
-
-[.libnurbs.internals]uarray.obj : [.libnurbs.internals]uarray.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]uarray.obj [.libnurbs.internals]uarray.cc
-
-[.libnurbs.internals]varray.obj : [.libnurbs.internals]varray.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.internals]varray.obj [.libnurbs.internals]varray.cc
-
-[.libnurbs.nurbtess]directedLine.obj : [.libnurbs.nurbtess]directedLine.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]directedLine.obj [.libnurbs.nurbtess]directedLine.cc
-
-[.libnurbs.nurbtess]gridWrap.obj : [.libnurbs.nurbtess]gridWrap.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]gridWrap.obj [.libnurbs.nurbtess]gridWrap.cc
-
-[.libnurbs.nurbtess]monoChain.obj : [.libnurbs.nurbtess]monoChain.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]monoChain.obj [.libnurbs.nurbtess]monoChain.cc
-
-[.libnurbs.nurbtess]monoPolyPart.obj : [.libnurbs.nurbtess]monoPolyPart.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]monoPolyPart.obj [.libnurbs.nurbtess]monoPolyPart.cc
-
-[.libnurbs.nurbtess]monoTriangulation.obj : [.libnurbs.nurbtess]monoTriangulation.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]monoTriangulation.obj [.libnurbs.nurbtess]monoTriangulation.cc
-
-[.libnurbs.nurbtess]partitionX.obj : [.libnurbs.nurbtess]partitionX.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]partitionX.obj [.libnurbs.nurbtess]partitionX.cc
-
-[.libnurbs.nurbtess]partitionY.obj : [.libnurbs.nurbtess]partitionY.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]partitionY.obj [.libnurbs.nurbtess]partitionY.cc
-
-[.libnurbs.nurbtess]polyDBG.obj : [.libnurbs.nurbtess]polyDBG.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]polyDBG.obj [.libnurbs.nurbtess]polyDBG.cc
-
-[.libnurbs.nurbtess]polyUtil.obj : [.libnurbs.nurbtess]polyUtil.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]polyUtil.obj [.libnurbs.nurbtess]polyUtil.cc
-
-[.libnurbs.nurbtess]primitiveStream.obj : [.libnurbs.nurbtess]primitiveStream.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]primitiveStream.obj [.libnurbs.nurbtess]primitiveStream.cc
-
-[.libnurbs.nurbtess]quicksort.obj : [.libnurbs.nurbtess]quicksort.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]quicksort.obj [.libnurbs.nurbtess]quicksort.cc
-
-[.libnurbs.nurbtess]rectBlock.obj : [.libnurbs.nurbtess]rectBlock.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]rectBlock.obj [.libnurbs.nurbtess]rectBlock.cc
-
-[.libnurbs.nurbtess]sampleComp.obj : [.libnurbs.nurbtess]sampleComp.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]sampleComp.obj [.libnurbs.nurbtess]sampleComp.cc
-
-[.libnurbs.nurbtess]sampleCompBot.obj : [.libnurbs.nurbtess]sampleCompBot.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]sampleCompBot.obj [.libnurbs.nurbtess]sampleCompBot.cc
-
-[.libnurbs.nurbtess]sampleCompRight.obj : [.libnurbs.nurbtess]sampleCompRight.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]sampleCompRight.obj [.libnurbs.nurbtess]sampleCompRight.cc
-
-[.libnurbs.nurbtess]sampleCompTop.obj : [.libnurbs.nurbtess]sampleCompTop.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]sampleCompTop.obj [.libnurbs.nurbtess]sampleCompTop.cc
-
-[.libnurbs.nurbtess]sampleMonoPoly.obj : [.libnurbs.nurbtess]sampleMonoPoly.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]sampleMonoPoly.obj [.libnurbs.nurbtess]sampleMonoPoly.cc
-
-[.libnurbs.nurbtess]sampledLine.obj : [.libnurbs.nurbtess]sampledLine.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]sampledLine.obj [.libnurbs.nurbtess]sampledLine.cc
-
-[.libnurbs.nurbtess]searchTree.obj : [.libnurbs.nurbtess]searchTree.cc
- $(CXX) $(CFLAGS) /obj=[.libnurbs.nurbtess]searchTree.obj [.libnurbs.nurbtess]searchTree.cc
+++ /dev/null
-# DOS/DJGPP Mesa Utility Toolkit
-# Version: 1.0
-#
-# Copyright (C) 2005 Daniel Borca All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# DANIEL BORCA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# GLIDE path to Glide3 SDK; used to resolve DXEs.
-# default = $(TOP)/glide3
-#
-# Targets:
-# all: build GLUT
-# clean: remove object files
-#
-
-
-
-.PHONY: all clean
-
-TOP = ../../..
-GLIDE ?= $(TOP)/glide3
-LIBDIR = $(TOP)/lib
-GLUT_LIB = libglut.a
-GLUT_DXE = glut.dxe
-GLUT_IMP = libiglut.a
-
-export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH);$(LIBDIR);$(GLIDE)/lib
-
-CC = gcc
-CFLAGS += -I$(TOP)/include -I. -IPC_HW
-CFLAGS += -DGLUT_IMPORT_LIB
-
-AR = ar
-ARFLAGS = crus
-
-HAVEDXE3 = $(wildcard $(DJDIR)/bin/dxe3gen.exe)
-
-ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = del $(subst /,\,$(1))
-else
-UNLINK = $(RM) $(1)
-endif
-
-CORE_SOURCES = \
- loop.c \
- callback.c \
- color.c \
- extens.c \
- init.c \
- menu.c \
- mouse.c \
- overlay.c \
- state.c \
- util.c \
- window.c \
- f8x13.c \
- f9x15.c \
- hel10.c \
- hel12.c \
- hel18.c \
- tr10.c \
- tr24.c \
- mroman.c \
- roman.c \
- bitmap.c \
- stroke.c \
- teapot.c \
- shapes.c
-
-PC_HW_SOURCES = \
- PC_HW/pc_hw.c \
- PC_HW/pc_keyb.c \
- PC_HW/pc_mouse.c \
- PC_HW/pc_timer.c \
- PC_HW/pc_irq.S
-
-SOURCES = $(CORE_SOURCES) $(PC_HW_SOURCES)
-
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.S.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.s.o:
- $(CC) -o $@ $(CFLAGS) -x assembler-with-cpp -c $<
-
-all: $(LIBDIR)/$(GLUT_LIB) $(LIBDIR)/$(GLUT_DXE) $(LIBDIR)/$(GLUT_IMP)
-
-$(LIBDIR)/$(GLUT_LIB): $(OBJECTS)
- $(AR) $(ARFLAGS) $@ $^
-
-$(LIBDIR)/$(GLUT_DXE) $(LIBDIR)/$(GLUT_IMP): $(OBJECTS)
-ifeq ($(HAVEDXE3),)
- $(warning Missing DXE3 package... Skipping $(GLUT_DXE))
-else
- -dxe3gen -o $(LIBDIR)/$(GLUT_DXE) -Y $(LIBDIR)/$(GLUT_IMP) -D "MesaGLUT DJGPP" -E _glut -P gl.dxe -U $^
-endif
-
-clean:
- -$(call UNLINK,*.o)
- -$(call UNLINK,PC_HW/*.o)
-
--include depend
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 5.1
-#
-# Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# MinGW core makefile v1.4 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-# MinGW core-glut makefile updated for Mesa 7.0
-#
-# Updated : by Heromyth, on 2007-7-21
-# Email : zxpmyth@yahoo.com.cn
-# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
-# The others havn't been tested yet.
-# 2) The generated DLLs are *not* compatible with the ones built
-# with the other compilers like VC8, especially for GLUT.
-# 3) Although more tests are needed, it can be used individually!
-
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most WMesa code and requires fxMesa.
-# As a consequence, you'll need the Win32 Glide3
-# library to build any application.
-# default = no
-# ICD=1 build the installable client driver interface
-# (windows opengl driver interface)
-# default = no
-# X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
-# default = no
-#
-# Targets:
-# all: build GL
-# clean: remove object files
-#
-
-
-
-.PHONY: all clean
-.INTERMEDIATE: x86/gen_matypes.exe
-.SUFFIXES: .rc .res
-
-# Set this to the prefix of your build tools, i.e. mingw32-
-TOOLS_PREFIX = mingw32-
-
-TOP = ../../..
-
-LIBDIR = $(TOP)/lib
-
-GLUT_DLL = glut32.dll
-GLUT_IMP = libglut32.a
-GLUT_DEF = glut.def
-
-include $(TOP)/configs/config.mgw
-GLUT_USING_STDCALL ?= 1
-
-
-
-LDLIBS = -L$(LIBDIR) -lwinmm -lgdi32 -luser32 -lopengl32 -lglu32
-LDFLAGS = -Wl,--out-implib=$(LIBDIR)/$(GLUT_IMP) -Wl,--output-def=$(LIBDIR)/$(GLUT_DEF)
-
-CFLAGS += -DBUILD_GLUT32 -DGLUT_BUILDING_LIB -DMESA -D_DLL
-
-ifeq ($(GL_USING_STDCALL),0)
- CFLAGS += -DGL_NO_STDCALL
-endif
-
-ifeq ($(GLUT_USING_STDCALL),1)
- CFLAGS += -D_STDCALL_SUPPORTED
- LDFLAGS += -Wl,--add-stdcall-alias
-else
- CFLAGS += -DGLUT_NO_STDCALL
-endif
-
-CFLAGS += -DNDEBUG -DLIBRARYBUILD -I$(TOP)/include
-
-CC = gcc
-CXX = g++
-CXXFLAGS = $(CFLAGS)
-
-AR = ar
-ARFLAGS = crus
-
-UNLINK = del $(subst /,\,$(1))
-ifneq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = $(RM) $(1)
-endif
-ifneq ($(wildcard $(addsuffix /rm,$(subst :, ,$(PATH)))),)
-UNLINK = $(RM) $(1)
-endif
-
-HDRS = glutint.h glutstroke.h glutbitmap.h glutwin32.h stroke.h win32_glx.h win32_x11.h
-
-SRCS = \
- glut_bitmap.c \
- glut_bwidth.c \
- glut_cindex.c \
- glut_cmap.c \
- glut_cursor.c \
- glut_dials.c \
- glut_dstr.c \
- glut_event.c \
- glut_ext.c \
- glut_fbc.c \
- glut_fullscrn.c \
- glut_gamemode.c \
- glut_get.c \
- glut_init.c \
- glut_input.c \
- glut_joy.c \
- glut_key.c \
- glut_keyctrl.c \
- glut_keyup.c \
- glut_mesa.c \
- glut_modifier.c \
- glut_overlay.c \
- glut_shapes.c \
- glut_space.c \
- glut_stroke.c \
- glut_swap.c \
- glut_swidth.c \
- glut_tablet.c \
- glut_teapot.c \
- glut_util.c \
- glut_vidresize.c \
- glut_warp.c \
- glut_win.c \
- glut_winmisc.c \
- win32_glx.c \
- win32_menu.c \
- win32_util.c \
- win32_winproc.c \
- win32_x11.c
-
-
-SRCSSEMIGENS = \
- glut_8x13.c \
- glut_9x15.c \
- glut_hel10.c \
- glut_hel12.c \
- glut_hel18.c \
- glut_mroman.c \
- glut_roman.c \
- glut_tr10.c \
- glut_tr24.c
-
-
-
-SOURCES = $(SRCS) $(SRCSSEMIGENS)
-
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.cc.o:
- $(CXX) -o $@ $(CXXFLAGS) -c $<
-
-
-all: $(LIBDIR) $(LIBDIR)/$(GLUT_DLL) $(LIBDIR)/$(GLUT_IMP)
-
-$(LIBDIR):
- mkdir -p $(LIBDIR)
-
-$(LIBDIR)/$(GLUT_DLL) $(LIBDIR)/$(GLUT_IMP): $(OBJECTS)
- $(CXX) -shared -fPIC -o $(LIBDIR)/$(GLUT_DLL) $(LDFLAGS) \
- $^ $(LDLIBS)
-
-
-
-clean:
- -$(call UNLINK,*.o)
\ No newline at end of file
+++ /dev/null
-# Makefile for GLUT for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-.first
- define gl [---.include.gl]
-
-.include [---]mms.config
-
-##### MACROS #####
-GLUT_MAJOR = 3
-GLUT_MINOR = 7
-
-VPATH = RCS
-
-INCDIR = [---.include]
-LIBDIR = [---.lib]
-CFLAGS = /nowarn/include=$(INCDIR)/prefix=all/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = \
-glut_8x13.c \
-glut_9x15.c \
-glut_bitmap.c \
-glut_bwidth.c \
-glut_cindex.c \
-glut_cmap.c \
-glut_cursor.c \
-glut_dials.c \
-glut_dstr.c \
-glut_event.c \
-glut_ext.c \
-glut_fullscrn.c \
-glut_gamemode.c \
-glut_get.c \
-glut_glxext.c \
-glut_hel10.c \
-glut_hel12.c \
-glut_hel18.c \
-glut_init.c \
-glut_input.c \
-glut_joy.c \
-glut_key.c \
-glut_keyctrl.c \
-glut_keyup.c \
-glut_menu.c \
-glut_menu2.c \
-glut_mesa.c \
-glut_modifier.c \
-glut_mroman.c \
-glut_overlay.c \
-glut_roman.c \
-glut_shapes.c \
-glut_space.c \
-glut_stroke.c \
-glut_swap.c \
-glut_swidth.c \
-glut_tablet.c \
-glut_teapot.c \
-glut_tr10.c \
-glut_tr24.c \
-glut_util.c \
-glut_vidresize.c \
-glut_warp.c \
-glut_win.c \
-glut_winmisc.c \
-layerutil.c
-
-OBJECTS0=glut_8x13.obj,\
-glut_9x15.obj,\
-glut_bitmap.obj,\
-glut_bwidth.obj,\
-glut_cindex.obj,\
-glut_cmap.obj,\
-glut_cursor.obj,\
-glut_dials.obj,\
-glut_dstr.obj,\
-glut_event.obj,\
-glut_ext.obj,\
-glut_fullscrn.obj,\
-glut_gamemode.obj
-
-OBJECTS1=glut_get.obj,\
-glut_glxext.obj,\
-glut_hel10.obj,\
-glut_hel12.obj,\
-glut_hel18.obj,\
-glut_init.obj,\
-glut_input.obj,\
-glut_joy.obj,\
-glut_key.obj,\
-glut_keyctrl.obj,\
-glut_keyup.obj,\
-glut_menu.obj,\
-glut_menu2.obj,\
-glut_mesa.obj,\
-glut_modifier.obj
-
-OBJECTS2=glut_mroman.obj,\
-glut_overlay.obj,\
-glut_roman.obj,\
-glut_shapes.obj,\
-glut_space.obj,\
-glut_stroke.obj,\
-glut_swap.obj,\
-glut_swidth.obj,\
-glut_tablet.obj,\
-glut_teapot.obj,\
-glut_tr10.obj,\
-glut_tr24.obj,\
-glut_util.obj,\
-glut_vidresize.obj
-
-OBJECTS3=glut_warp.obj,\
-glut_win.obj,\
-glut_winmisc.obj,\
-layerutil.obj
-
-##### RULES #####
-
-VERSION=Glut V3.7
-
-##### TARGETS #####
-
-# Make the library
-$(LIBDIR)$(GLUT_LIB) : $(OBJECTS0) $(OBJECTS1) $(OBJECTS2) $(OBJECTS3)
- @ $(MAKELIB) $(GLUT_LIB) $(OBJECTS0)
- @ library $(GLUT_LIB) $(OBJECTS1)
- @ library $(GLUT_LIB) $(OBJECTS2)
- @ library $(GLUT_LIB) $(OBJECTS3)
- @ rename $(GLUT_LIB)* $(LIBDIR)
-.ifdef SHARE
- @ WRITE_ SYS$OUTPUT " generating mesagl1.opt"
- @ OPEN_/WRITE FILE mesagl1.opt
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "! mesagl1.opt generated by DESCRIP.$(MMS_EXT)"
- @ WRITE_ FILE "!"
- @ WRITE_ FILE "IDENTIFICATION=""$(VERSION)"""
- @ WRITE_ FILE "GSMATCH=LEQUAL,3,7
- @ WRITE_ FILE "$(OBJECTS0)"
- @ WRITE_ FILE "$(OBJECTS1)"
- @ WRITE_ FILE "$(OBJECTS2)"
- @ WRITE_ FILE "$(OBJECTS3)"
- @ WRITE_ FILE "[---.lib]libmesaglu.exe/SHARE"
- @ WRITE_ FILE "[---.lib]libmesagl.exe/SHARE"
- @ write file "sys$library:decw$xmulibshr.exe/share"
- @ WRITE_ FILE "SYS$SHARE:DECW$XEXTLIBSHR/SHARE"
- @ WRITE_ FILE "SYS$SHARE:DECW$XLIBSHR/SHARE"
- @ CLOSE_ FILE
- @ WRITE_ SYS$OUTPUT " generating mesagl.map ..."
- @ CXXLINK_/NODEB/NOSHARE/NOEXE/MAP=mesagl.map/FULL mesagl1.opt/OPT
- @ WRITE_ SYS$OUTPUT " analyzing mesagl.map ..."
- @ @[---.vms]ANALYZE_MAP.COM mesagl.map mesagl.opt
- @ WRITE_ SYS$OUTPUT " linking $(GLUT_SHAR) ..."
- @ CXXLINK_/NODEB/SHARE=$(GLUT_SHAR)/MAP=mesagl.map/FULL mesagl1.opt/opt,mesagl.opt/opt
- @ rename $(GLUT_SHAR)* $(LIBDIR)
-.endif
-
-clean :
- delete *.obj;*
- purge
-
-include mms_depend.
-
-glut_8x13.obj : glut_8x13.c
-glut_9x15.obj : glut_9x15.c
-glut_bitmap.obj : glut_bitmap.c
-glut_bwidth.obj : glut_bwidth.c
-glut_cindex.obj : glut_cindex.c
-glut_cmap.obj : glut_cmap.c
-glut_cursor.obj : glut_cursor.c
-glut_dials.obj : glut_dials.c
-glut_dstr.obj : glut_dstr.c
-glut_event.obj : glut_event.c
-glut_ext.obj : glut_ext.c
-glut_fullscrn.obj : glut_fullscrn.c
-glut_gamemode.obj : glut_gamemode.c
-glut_get.obj : glut_get.c
-glut_glxext.obj : glut_glxext.c
-glut_hel10.obj : glut_hel10.c
-glut_hel12.obj : glut_hel12.c
-glut_hel18.obj : glut_hel18.c
-glut_init.obj : glut_init.c
-glut_input.obj : glut_input.c
-glut_joy.obj : glut_joy.c
-glut_key.obj : glut_key.c
-glut_keyctrl.obj : glut_keyctrl.c
-glut_keyup.obj : glut_keyup.c
-glut_menu.obj : glut_menu.c
-glut_menu2.obj : glut_menu2.c
-glut_mesa.obj : glut_mesa.c
-glut_modifier.obj : glut_modifier.c
-glut_mroman.obj : glut_mroman.c
-glut_overlay.obj : glut_overlay.c
-glut_roman.obj : glut_roman.c
-glut_shapes.obj : glut_shapes.c
-glut_space.obj : glut_space.c
-glut_stroke.obj : glut_stroke.c
-glut_swap.obj : glut_swap.c
-glut_swidth.obj : glut_swidth.c
-glut_tablet.obj : glut_tablet.c
-glut_teapot.obj : glut_teapot.c
-glut_tr10.obj : glut_tr10.c
-glut_tr24.obj : glut_tr24.c
-glut_util.obj : glut_util.c
-glut_vidresize.obj : glut_vidresize.c
-glut_warp.obj : glut_warp.c
-glut_win.obj : glut_win.c
-glut_winmisc.obj : glut_winmisc.c
-layerutil.obj : layerutil.c
+++ /dev/null
-# DO NOT DELETE
-
-glut_8x13.obj : glutbitmap.h [---.include.gl]gl.h
-glut_9x15.obj : glutbitmap.h [---.include.gl]gl.h
-glut_bitmap.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_bitmap.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_bitmap.obj : glutbitmap.h
-glut_bwidth.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_bwidth.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_bwidth.obj : glutbitmap.h
-glut_cindex.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_cindex.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_cindex.obj : layerutil.h
-glut_cursor.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_cursor.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_dials.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_dials.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h [---.include.gl]glu.h
-glut_dstr.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_dstr.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h [---.include.gl]glu.h
-glut_event.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_event.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_ext.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_ext.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_fullscrn.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_fullscrn.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h
-glut_fullscrn.obj : [---.include.gl]glu.h
-glut_get.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_get.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_hel10.obj : glutbitmap.h [---.include.gl]gl.h
-glut_hel12.obj : glutbitmap.h [---.include.gl]gl.h
-glut_hel18.obj : glutbitmap.h [---.include.gl]gl.h
-glut_init.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_init.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_menu.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_menu.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h layerutil.h
-glut_mesa.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_mesa.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h [---.include.gl]glu.h
-glut_modifier.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_modifier.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h
-glut_modifier.obj : [---.include.gl]glu.h
-glut_mroman.obj : glutstroke.h
-glut_overlay.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_overlay.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_overlay.obj : layerutil.h
-glut_roman.obj : glutstroke.h
-glut_shapes.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_shapes.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_space.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_space.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h [---.include.gl]glu.h
-glut_stroke.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_stroke.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_stroke.obj : glutstroke.h
-glut_swidth.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_swidth.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_swidth.obj : glutstroke.h
-glut_tablet.obj : glutint.h [---.include.gl]glx.h [---.include.gl]gl.h
-glut_tablet.obj : [---.include.gl]xmesa.h [---.include.gl]glut.h [---.include.gl]glu.h
-glut_teapot.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_tr10.obj : glutbitmap.h [---.include.gl]gl.h
-glut_tr24.obj : glutbitmap.h [---.include.gl]gl.h
-glut_util.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_util.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_vidresize.obj : [---.include.gl]glx.h [---.include.gl]gl.h
-glut_vidresize.obj : [---.include.gl]xmesa.h glutint.h [---.include.gl]glut.h
-glut_vidresize.obj : [---.include.gl]glu.h
-glut_warp.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_warp.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_win.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_win.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-glut_winmisc.obj : [---.include.gl]glut.h [---.include.gl]gl.h [---.include.gl]glu.h
-glut_winmisc.obj : glutint.h [---.include.gl]glx.h [---.include.gl]xmesa.h
-layerutil.obj : layerutil.h
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 5.1
-#
-# Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# DOS/DJGPP core makefile v1.7 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most DMesa code and requires fxMesa.
-# As a consequence, you'll need the DJGPP Glide3
-# library to build any application.
-# default = no
-# X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
-# default = no
-#
-# Targets:
-# all: build GL
-# clean: remove object files
-#
-
-
-
-.PHONY: all clean
-.INTERMEDIATE: x86/gen_matypes.exe
-
-TOP = ../..
-GLIDE ?= $(TOP)/glide3
-LIBDIR = $(TOP)/lib
-GL_LIB = libgl.a
-GL_DXE = gl.dxe
-GL_IMP = libigl.a
-
-export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH);$(LIBDIR);$(GLIDE)/lib
-
-CC = gcc
-CFLAGS += $(INCLUDE_DIRS)
-CFLAGS += -DUSE_EXTERNAL_DXTN_LIB=1
-ifeq ($(FX),1)
-CFLAGS += -D__DOS__
-CFLAGS += -I$(GLIDE)/include -DFX
-LIBNAME = "Mesa/FX DJGPP"
-else
-LIBNAME = "Mesa DJGPP"
-endif
-
-AR = ar
-ARFLAGS = crus
-
-HAVEDXE3 = $(wildcard $(DJDIR)/bin/dxe3gen.exe)
-
-ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = del $(subst /,\,$(1))
-else
-UNLINK = $(RM) $(1)
-endif
-
-include sources
-
-ifeq ($(X86),1)
-CFLAGS += -DUSE_X86_ASM
-CFLAGS += -DUSE_MMX_ASM
-CFLAGS += -DUSE_SSE_ASM
-CFLAGS += -DUSE_3DNOW_ASM
-X86_SOURCES += $(X86_API)
-else
-X86_SOURCES =
-endif
-
-DRIVER_SOURCES = \
- drivers/dos/dmesa.c
-ifeq ($(FX),1)
-DRIVER_SOURCES += \
- $(GLIDE_DRIVER_SOURCES)
-else
-DRIVER_SOURCES += \
- $(OSMESA_DRIVER_SOURCES) \
- drivers/dos/video.c \
- drivers/dos/vesa.c \
- drivers/dos/blit.S \
- drivers/dos/vga.c \
- drivers/dos/null.c \
- drivers/dos/dpmi.c
-endif
-
-SOURCES = $(CORE_SOURCES) $(X86_SOURCES) $(COMMON_DRIVER_SOURCES) $(DRIVER_SOURCES)
-
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
-
-X86_OBJECTS = $(addsuffix .o,$(basename $(X86_SOURCES)))
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.S.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.s.o:
- $(CC) -o $@ $(CFLAGS) -x assembler-with-cpp -c $<
-
-all: $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GL_DXE) $(LIBDIR)/$(GL_IMP)
-
-$(LIBDIR)/$(GL_LIB): $(OBJECTS)
- $(AR) $(ARFLAGS) $@ $^
-
-$(LIBDIR)/$(GL_DXE) $(LIBDIR)/$(GL_IMP): $(OBJECTS)
-ifeq ($(HAVEDXE3),)
- $(warning Missing DXE3 package... Skipping $(GL_DXE))
-else
-ifeq ($(FX),1)
- -dxe3gen -o $(LIBDIR)/$(GL_DXE) -Y $(LIBDIR)/$(GL_IMP) -D $(LIBNAME) -E _gl -E _DMesa -P glide3x.dxe -U $^
-else
- -dxe3gen -o $(LIBDIR)/$(GL_DXE) -Y $(LIBDIR)/$(GL_IMP) -D $(LIBNAME) -E _gl -E _DMesa -U $^
-endif
-endif
-
-$(X86_OBJECTS): x86/matypes.h
-
-x86/matypes.h: x86/gen_matypes.exe
- $< > $@
-
-x86/gen_matypes.exe: x86/gen_matypes.c
- $(CC) -o $@ $(CFLAGS) -s $<
-
-clean:
- -$(call UNLINK,array_cache/*.o)
- -$(call UNLINK,glapi/*.o)
- -$(call UNLINK,main/*.o)
- -$(call UNLINK,math/*.o)
- -$(call UNLINK,shader/*.o)
- -$(call UNLINK,sparc/*.o)
- -$(call UNLINK,ppc/*.o)
- -$(call UNLINK,swrast/*.o)
- -$(call UNLINK,swrast_setup/*.o)
- -$(call UNLINK,tnl/*.o)
- -$(call UNLINK,x86/*.o)
- -$(call UNLINK,drivers/common/*.o)
- -$(call UNLINK,drivers/dos/*.o)
- -$(call UNLINK,drivers/glide/*.o)
+++ /dev/null
-# Mesa 3-D graphics library
-# Version: 7.0
-#
-# Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-# MinGW core makefile v1.4 for Mesa
-#
-# Copyright (C) 2002 - Daniel Borca
-# Email : dborca@users.sourceforge.net
-# Web : http://www.geocities.com/dborca
-
-# MinGW core-gl makefile updated for Mesa 7.0
-#
-# updated : by Heromyth, on 2007-7-21
-# Email : zxpmyth@yahoo.com.cn
-# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
-# The others havn't been tested yet.
-# 2) The generated DLLs are *not* compatible with the ones built
-# with the other compilers like VC8, especially for GLUT.
-# 3) Although more tests are needed, it can be used individually!
-
-
-#
-# Available options:
-#
-# Environment variables:
-# CFLAGS
-#
-# GLIDE path to Glide3 SDK; used with FX.
-# default = $(TOP)/glide3
-# FX=1 build for 3dfx Glide3. Note that this disables
-# compilation of most WMesa code and requires fxMesa.
-# As a consequence, you'll need the Win32 Glide3
-# library to build any application.
-# default = no
-# ICD=1 build the installable client driver interface
-# (windows opengl driver interface)
-# default = no
-# X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
-# default = no
-#
-# Targets:
-# all: build GL
-# clean: remove object files
-#
-
-
-.PHONY: all clean
-.INTERMEDIATE: x86/gen_matypes.exe
-.SUFFIXES: .rc .res
-
-# Set this to the prefix of your build tools, i.e. mingw32-
-TOOLS_PREFIX = mingw32-
-
-
-
-TOP = ../..
-GLIDE ?= $(TOP)/glide3
-LIBDIR = $(TOP)/lib
-ifeq ($(ICD),1)
- GL_DLL = mesa32.dll
- GL_IMP = libmesa32.a
-else
- GL_DLL = opengl32.dll
- GL_IMP = libopengl32.a
-endif
-
-GL_DEF = gl.def
-
-include $(TOP)/configs/config.mgw
-GL_USING_STDCALL ?= 1
-
-MESA_LIB = libmesa.a
-
-LDLIBS = -lgdi32 -luser32 -liberty
-LDFLAGS = -Wl,--out-implib=$(LIBDIR)/$(GL_IMP) -Wl,--output-def=$(LIBDIR)/gl.def
-
-CC = $(TOOLS_PREFIX)gcc
-CFLAGS += -DBUILD_GL32 -D_OPENGL32_ -D_DLL -DMESA_MINWARN -DNDEBUG -D_USRDLL -DGDI_EXPORTS
-
-ifeq ($(GL_USING_STDCALL),1)
- LDFLAGS += -Wl,--add-stdcall-alias
-else
- CFLAGS += -DGL_NO_STDCALL
-endif
-
-CFLAGS += -DUSE_EXTERNAL_DXTN_LIB=1
-ifeq ($(FX),1)
- CFLAGS += -I$(GLIDE)/include -DFX
- LDLIBS += -L$(GLIDE)/lib -lglide3x
- GL_DEF = drivers/windows/fx/fxopengl.def
- GL_RES = drivers/windows/fx/fx.rc
-else
- ifeq ($(ICD),1)
- CFLAGS += -DUSE_MGL_NAMESPACE
- GL_DEF = drivers/windows/icd/mesa.def
- else
- GL_DEF = drivers/windows/gdi/mesa.def
- endif
-endif
-
-AR = ar
-ARFLAGS = crus
-
-UNLINK = del $(subst /,\,$(1))
-ifneq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
-UNLINK = $(RM) $(1)
-endif
-ifneq ($(wildcard $(addsuffix /rm,$(subst :, ,$(PATH)))),)
-UNLINK = $(RM) $(1)
-endif
-
-include sources
-
-CFLAGS += $(INCLUDE_DIRS)
-
-ifeq ($(X86),1)
-CFLAGS += -DUSE_X86_ASM
-CFLAGS += -DUSE_MMX_ASM
-CFLAGS += -DUSE_SSE_ASM
-CFLAGS += -DUSE_3DNOW_ASM
-X86_SOURCES += $(X86_API)
-else
-X86_SOURCES =
-endif
-
-ifeq ($(FX),1)
-DRIVER_SOURCES = \
- $(GLIDE_DRIVER_SOURCES) \
- drivers/windows/fx/fxwgl.c
-else
-ifeq ($(ICD),1)
-DRIVER_SOURCES = \
- drivers/windows/gdi/wmesa.c \
- drivers/windows/icd/icd.c
-else
-DRIVER_SOURCES = \
- drivers/windows/gdi/wmesa.c \
- drivers/windows/gdi/wgl.c
-endif
-endif
-
-SOURCES = $(CORE_SOURCES) $(X86_SOURCES) $(COMMON_DRIVER_SOURCES) $(DRIVER_SOURCES)
-
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
-
-X86_OBJECTS = $(addsuffix .o,$(basename $(X86_SOURCES)))
-
-RESOURCE = $(GL_RES:.rc=.res)
-
-.c.o:
- $(CC) -o $@ $(CFLAGS) -c $<
-.s.o:
- $(CC) -o $@ $(CFLAGS) -x assembler-with-cpp -c $<
-
-.rc.res:
- windres -o $@ -Irc -Ocoff $<
-
-all: $(LIBDIR) $(LIBDIR)/$(GL_DLL) $(LIBDIR)/$(GL_IMP)
-
-$(LIBDIR):
- mkdir -p $(LIBDIR)
-
-$(LIBDIR)/$(GL_DLL) $(LIBDIR)/$(GL_IMP): $(OBJECTS) $(RESOURCE)
- $(CC) -shared -fPIC -o $(LIBDIR)/$(GL_DLL) $(LDFLAGS) \
- $^ $(LDLIBS)
-
-$(X86_OBJECTS): x86/matypes.h
-
-x86/matypes.h: x86/gen_matypes.exe
- $(subst /,\,$< > $@)
-
-x86/gen_matypes.exe: x86/gen_matypes.c
- $(CC) -o $@ $(CFLAGS) -s $<
-
-# [dBorca]
-# glapi_x86.S needs some adjustments
-# in order to generate correct entrypoints
-# Trick: change the following condition to
-# be always false if you need C entrypoints
-# with USE_X86_ASM (useful for trace/debug)
-ifeq (1,1)
-x86/glapi_x86.o: x86/glapi_x86.S
- $(CC) -o $@ $(CFLAGS) -DSTDCALL_API -c $<
-else
-main/dispatch.o: main/dispatch.c
- $(CC) -o $@ $(CFLAGS) -UUSE_X86_ASM -c $<
-glapi/glapi.o: glapi/glapi.c
- $(CC) -o $@ $(CFLAGS) -UUSE_X86_ASM -c $<
-endif
-
-# [dBorca]
-# if we want codegen, we have to stdcall
-tnl/t_vtx_x86_gcc.o: tnl/t_vtx_x86_gcc.S
- $(CC) -o $@ $(CFLAGS) -DSTDCALL_API -c $<
-
-clean:
- -$(call UNLINK,glapi/*.o)
- -$(call UNLINK,main/*.o)
- -$(call UNLINK,math/*.o)
- -$(call UNLINK,vbo/*.o)
- -$(call UNLINK,shader/*.o)
- -$(call UNLINK,shader/slang/*.o)
- -$(call UNLINK,shader/grammar/*.o)
- -$(call UNLINK,sparc/*.o)
- -$(call UNLINK,ppc/*.o)
- -$(call UNLINK,swrast/*.o)
- -$(call UNLINK,swrast_setup/*.o)
- -$(call UNLINK,tnl/*.o)
- -$(call UNLINK,x86/*.o)
- -$(call UNLINK,x86/rtasm/*.o)
- -$(call UNLINK,x86-64/*.o)
- -$(call UNLINK,drivers/common/*.o)
- -$(call UNLINK,drivers/glide/*.o)
- -$(call UNLINK,drivers/windows/fx/*.o)
- -$(call UNLINK,drivers/windows/fx/*.res)
- -$(call UNLINK,drivers/windows/gdi/*.o)
- -$(call UNLINK,drivers/windows/icd/*.o)
+++ /dev/null
-# Makefile for Mesa for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-
-all :
- set default [.main]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.glapi]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.shader]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.drivers.common]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.x11]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.osmesa]
- $(MMS)$(MMSQUALIFIERS)
- set default [--.math]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.tnl]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.swrast]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.swrast_setup]
- $(MMS)$(MMSQUALIFIERS)
- set default [-.array_cache]
- $(MMS)$(MMSQUALIFIERS)
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
-# Last revision : 2 November 2005
-
-.first
- define gl [----.include.gl]
- define math [--.math]
- define tnl [--.tnl]
- define swrast [--.swrast]
-
-.include [----]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [----.include],[--.main],[--.glapi],[--.shader]
-LIBDIR = [----.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = driverfuncs.c
-
-OBJECTS =driverfuncs.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-driverfuncs.obj : driverfuncs.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 16 June 2003
-
-.first
- define gl [----.include.gl]
- define math [--.math]
- define tnl [--.tnl]
- define swrast [--.swrast]
- define swrast_setup [--.swrast_setup]
- define array_cache [--.array_cache]
- define drivers [-]
-
-.include [----]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [----.include],[--.main],[--.glapi]
-LIBDIR = [----.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = osmesa.c
-
-OBJECTS = osmesa.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-osmesa.obj : osmesa.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 16 June 2003
-
-.first
- define gl [----.include.gl]
- define math [--.math]
- define tnl [--.tnl]
- define swrast [--.swrast]
- define swrast_setup [--.swrast_setup]
- define array_cache [--.array_cache]
- define drivers [-]
-
-.include [----]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [----.include],[--.main],[--.glapi]
-LIBDIR = [----.lib]
-CFLAGS =/include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = fakeglx.c glxapi.c xfonts.c xm_api.c xm_dd.c xm_line.c xm_span.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_buffer.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-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
-xm_tri.obj : xm_tri.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 16 June 2003
-
-.first
- define gl [---.include.gl]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.main]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = glapi.c glthread.c
-
-OBJECTS = glapi.obj,glthread.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-glapi.obj : glapi.c
-
-glthread.obj : glthread.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 10 May 2005
-
-.first
- define gl [---.include.gl]
- define math [-.math]
- define shader [-.shader]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.glapi],[-.shader]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES =accum.c \
- api_arrayelt.c \
- api_loopback.c \
- api_noop.c \
- api_validate.c \
- attrib.c \
- arrayobj.c \
- blend.c \
- bufferobj.c \
- buffers.c \
- clip.c \
- colortab.c \
- context.c \
- convolve.c \
- debug.c \
- depth.c \
- depthstencil.c \
- dispatch.c \
- dlist.c \
- drawpix.c \
- enable.c \
- enums.c \
- eval.c \
- execmem.c \
- extensions.c \
- fbobject.c \
- feedback.c \
- fog.c \
- framebuffer.c \
- get.c \
- getstring.c \
- hash.c \
- hint.c \
- histogram.c \
- image.c \
- imports.c \
- light.c \
- lines.c \
- matrix.c \
- mipmap.c \
- mm.c \
- occlude.c \
- pixel.c \
- points.c \
- polygon.c \
- rastpos.c \
- rbadaptors.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 \
- vtxfmt.c
-
-OBJECTS=accum.obj,\
-api_arrayelt.obj,\
-api_loopback.obj,\
-api_noop.obj,\
-api_validate.obj,\
-arrayobj.obj,\
-attrib.obj,\
-blend.obj,\
-bufferobj.obj,\
-buffers.obj,\
-clip.obj,\
-colortab.obj,\
-context.obj,\
-convolve.obj,\
-debug.obj,\
-depth.obj,\
-depthstencil.obj,\
-dispatch.obj,\
-dlist.obj,\
-drawpix.obj,\
-enable.obj,\
-enums.obj,\
-eval.obj,\
-execmem.obj,\
-extensions.obj,\
-fbobject.obj,\
-feedback.obj,\
-fog.obj,\
-framebuffer.obj,\
-get.obj,\
-getstring.obj,\
-hash.obj,\
-hint.obj,\
-histogram.obj,\
-image.obj,\
-imports.obj,\
-light.obj,\
-lines.obj,\
-matrix.obj,\
-mipmap.obj,\
-mm.obj,\
-occlude.obj,\
-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,\
-vtxfmt.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ $(MAKELIB) $(GL_LIB) $(OBJECTS)
- @ rename $(GL_LIB)* $(LIBDIR)
-
-clean :
- purge
- 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
-arrayobj.obj : arrayobj.c
-attrib.obj : attrib.c
-blend.obj : blend.c
-bufferobj.obj : bufferobj.c
-buffers.obj : buffers.c
-clip.obj : clip.c
-colortab.obj : colortab.c
-context.obj : context.c
-convolve.obj : convolve.c
-debug.obj : debug.c
-depth.obj : depth.c
-depthstencil.obj : depthstencil.c
-dispatch.obj : dispatch.c
-dlist.obj : dlist.c
-drawpix.obj : drawpix.c
-enable.obj : enable.c
-enums.obj : enums.c
-eval.obj : eval.c
-execmem.obj : execmem.c
-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
-hint.obj : hint.c
-histogram.obj : histogram.c
-image.obj : image.c
-imports.obj : imports.c vsnprintf.c
-light.obj : light.c
-lines.obj : lines.c
-matrix.obj : matrix.c
-mipmap.obj : mipmap.c
-mm.obj : mm.c
-occlude.obj : occlude.c
-pixel.obj : pixel.c
-points.obj : points.c
-polygon.obj : polygon.c
-rastpos.obj : rastpos.c
-rbadaptors.obj : rbadaptors.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
-vtxfmt.obj : vtxfmt.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 16 June 2003
-
-.first
- define gl [---.include.gl]
- define math [-.math]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.main],[-.glapi]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = m_debug_clip.c m_debug_norm.c m_debug_xform.c m_eval.c m_matrix.c\
- m_translate.c m_vector.c m_xform.c
-
-OBJECTS = m_debug_clip.obj,m_debug_norm.obj,m_debug_xform.obj,m_eval.obj,\
- m_matrix.obj,m_translate.obj,m_vector.obj,m_xform.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-m_debug_clip.obj : m_debug_clip.c
-m_debug_norm.obj : m_debug_norm.c
-m_debug_xform.obj : m_debug_xform.c
-m_eval.obj : m_eval.c
-m_matrix.obj : m_matrix.c
-m_translate.obj : m_translate.c
-m_vector.obj : m_vector.c
-m_xform.obj : m_xform.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
-# Last revision : 20 November 2006
-.first
- define gl [---.include.gl]
- define math [-.math]
- define swrast [-.swrast]
- define array_cache [-.array_cache]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[.grammar],[-.main],[-.glapi],[.slang]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1,"__extension__=")/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = \
- atifragshader.c \
- arbprogparse.c \
- arbprogram.c \
- nvfragparse.c \
- nvprogram.c \
- nvvertexec.c \
- nvvertparse.c \
- program.c \
- shaderobjects.c \
- shaderobjects_3dlabs.c
-
-OBJECTS = \
- atifragshader.obj,\
- arbprogparse.obj,\
- arbprogram.obj,\
- nvfragparse.obj,\
- nvprogram.obj,\
- nvvertexec.obj,\
- nvvertparse.obj,\
- program.obj,\
- shaderobjects.obj,\
- shaderobjects_3dlabs.obj
-
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-all :
- $(MMS)$(MMSQUALIFIERS) $(LIBDIR)$(GL_LIB)
- set def [.slang]
- $(MMS)$(MMSQUALIFIERS)
- set def [-.grammar]
- $(MMS)$(MMSQUALIFIERS)
- set def [-]
-
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-atifragshader.obj : atifragshader.c
-arbprogparse.obj : arbprogparse.c
-arbprogram.obj : arbprogram.c
-nvfragparse.obj : nvfragparse.c
-nvprogram.obj : nvprogram.c
-nvvertexec.obj : nvvertexec.c
-nvvertparse.obj : nvvertparse.c
-program.obj : program.c
-shaderobjects.obj : shaderobjects.c
- cc$(CFLAGS)/nowarn shaderobjects.c
-shaderobjects_3dlabs.obj : shaderobjects_3dlabs.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 1 June 2005
-
-.first
- define gl [----.include.gl]
- define math [--.math]
- define swrast [--.swrast]
- define array_cache [--.array_cache]
-
-.include [----]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [----.include],[],[--.main],[--.glapi],[-.slang]
-LIBDIR = [----.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = grammar_mesa.c
-
-OBJECTS = grammar_mesa.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-all :
- $(MMS)$(MMSQUALIFIERS) $(LIBDIR)$(GL_LIB)
-
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-grammar_mesa.obj : grammar_mesa.c grammar.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
-# Last revision : 17 March 2006
-
-.first
- define gl [----.include.gl]
- define math [--.math]
- define swrast [--.swrast]
- define array_cache [--.array_cache]
-
-.include [----]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [----.include],[--.main],[--.glapi],[-.slang],[-.grammar],[-]
-LIBDIR = [----.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = \
- slang_compile.c,slang_preprocess.c
-
-OBJECTS = \
- slang_compile.obj,slang_preprocess.obj,slang_utility.obj,\
- slang_execute.obj,slang_assemble.obj,slang_assemble_conditional.obj,\
- slang_assemble_constructor.obj,slang_assemble_typeinfo.obj,\
- slang_storage.obj,slang_assemble_assignment.obj,\
- slang_compile_function.obj,slang_compile_struct.obj,\
- slang_compile_variable.obj,slang_compile_operation.obj,\
- slang_library_noise.obj,slang_link.obj,slang_export.obj,\
- slang_analyse.obj,slang_library_texsample.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-slang_compile.obj : slang_compile.c
-slang_preprocess.obj : slang_preprocess.c
-slang_utility.obj : slang_utility.c
-slang_execute.obj : slang_execute.c
-slang_assemble.obj : slang_assemble.c
-slang_assemble_conditional.obj : slang_assemble_conditional.c
-slang_assemble_constructor.obj : slang_assemble_constructor.c
-slang_assemble_typeinfo.obj : slang_assemble_typeinfo.c
-slang_storage.obj : slang_storage.c
-slang_assemble_assignment.obj : slang_assemble_assignment.c
-slang_compile_function.obj : slang_compile_function.c
-slang_compile_struct.obj : slang_compile_struct.c
-slang_compile_variable.obj : slang_compile_variable.c
-slang_compile_operation.obj : slang_compile_operation.c
-slang_library_noise.obj : slang_library_noise.c
-slang_link.obj : slang_link.c
-slang_export.obj : slang_export.c
-slang_analyse.obj : slang_analyse.c
-slang_library_texsample.obj : slang_library_texsample.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
-# Last revision : 21 February 2006
-
-.first
- define gl [---.include.gl]
- define math [-.math]
- define swrast [-.swrast]
- define array_cache [-.array_cache]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.main],[-.glapi],[-.shader],[-.shader.slang]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = s_aaline.c s_aatriangle.c s_accum.c s_alpha.c \
- s_bitmap.c s_blend.c s_blit.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_points.c s_readpix.c \
- s_span.c s_stencil.c s_texstore.c s_texcombine.c s_texfilter.c \
- s_triangle.c s_zoom.c s_atifragshader.c s_arbshader.c
-
-OBJECTS = s_aaline.obj,s_aatriangle.obj,s_accum.obj,s_alpha.obj,\
- s_bitmap.obj,s_blend.obj,s_blit.obj,s_arbshader.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_points.obj,s_readpix.obj,s_span.obj,s_stencil.obj,\
- s_texstore.obj,s_texcombine.obj,s_texfilter.obj,s_triangle.obj,\
- s_zoom.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-s_atifragshader.obj : s_atifragshader.c
-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_bitmap.obj : s_bitmap.c
-s_blend.obj : s_blend.c
-s_blit.obj : s_blit.c
-s_buffers.obj : s_buffers.c
-s_context.obj : s_context.c
-s_copypix.obj : s_copypix.c
-s_depth.obj : s_depth.c
-s_drawpix.obj : s_drawpix.c
-s_feedback.obj : s_feedback.c
-s_fog.obj : s_fog.c
-s_imaging.obj : s_imaging.c
-s_lines.obj : s_lines.c
-s_logic.obj : s_logic.c
-s_masking.obj : s_masking.c
-s_nvfragprog.obj : s_nvfragprog.c
-s_points.obj : s_points.c
-s_readpix.obj : s_readpix.c
-s_span.obj : s_span.c
-s_stencil.obj : s_stencil.c
-s_texstore.obj : s_texstore.c
-s_texcombine.obj : s_texcombine.c
-s_texfilter.obj : s_texfilter.c
-s_triangle.obj : s_triangle.c
-s_zoom.obj : s_zoom.c
-s_arbshader.obj : s_arbshader.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
-# Last revision : 16 June 2003
-
-.first
- define gl [---.include.gl]
- define math [-.math]
- define tnl [-.tnl]
- define swrast [-.swrast]
- define array_cache [-.array_cache]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.main],[-.glapi]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES = ss_context.c ss_triangle.c
-
-OBJECTS = ss_context.obj,ss_triangle.obj
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-ss_context.obj : ss_context.c
-ss_triangle.obj : ss_triangle.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
-# Last revision : 21 February 2006
-
-.first
- define gl [---.include.gl]
- define math [-.math]
- define shader [-.shader]
- define array_cache [-.array_cache]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.main],[-.glapi],[-.shader],[-.shader.slang]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-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_vtx_eval.c t_vtx_exec.c t_save_playback.c t_save_loopback.c \
- t_vertex.c t_vtx_generic.c t_vtx_x86.c t_vertex_generic.c \
- t_vb_arbprogram.c t_vp_build.c t_vb_arbshader.c
-
-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_save_api.obj,t_vtx_api.obj,\
- t_vtx_eval.obj,t_vtx_exec.obj,t_save_playback.obj,t_save_loopback.obj,\
- t_vertex.obj,t_vtx_generic.obj,t_vtx_x86.obj,t_vertex_generic.obj,\
- t_vb_arbprogram.obj,t_vp_build.obj,t_vb_arbshader.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-t_array_api.obj : t_array_api.c
-t_array_import.obj : t_array_import.c
-t_context.obj : t_context.c
-t_pipeline.obj : t_pipeline.c
-t_vb_fog.obj : t_vb_fog.c
-t_vb_light.obj : t_vb_light.c
-t_vb_normals.obj : t_vb_normals.c
-t_vb_points.obj : t_vb_points.c
-t_vb_program.obj : t_vb_program.c
-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
-t_vertex.obj : t_vertex.c
-t_vtx_x86.obj : t_vtx_x86.c
-t_vtx_generic.obj : t_vtx_generic.c
-t_vertex_generic.obj : t_vertex_generic.c
-t_vb_arbprogram.obj : t_vb_arbprogram.c
-t_vp_build.obj : t_vp_build.c
-t_vb_arbshader.obj : t_vb_arbshader.c
+++ /dev/null
-# Makefile for core library for VMS
-# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
-# Last revision : 7 March 2007
-
-.first
- define gl [---.include.gl]
- define math [-.math]
- define vbo [-.vbo]
- define tnl [-.tnl]
- define shader [-.shader]
- define swrast [-.swrast]
- define swrast_setup [-.swrast_setup]
-
-.include [---]mms.config
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = [---.include],[-.main],[-.glapi],[-.shader],[-.shader.slang]
-LIBDIR = [---.lib]
-CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
-
-SOURCES =vbo_context.c,vbo_exec.c,vbo_exec_api.c,vbo_exec_array.c,\
- vbo_exec_draw.c,vbo_exec_eval.c,vbo_rebase.c,vbo_save.c,\
- vbo_save_api.c,vbo_save_draw.c,vbo_save_loopback.c,\
- vbo_split.c,vbo_split_copy.c,vbo_split_inplace.c
-
-OBJECTS =vbo_context.obj,vbo_exec.obj,vbo_exec_api.obj,vbo_exec_array.obj,\
- vbo_exec_draw.obj,vbo_exec_eval.obj,vbo_rebase.obj,vbo_save.obj,\
- vbo_save_api.obj,vbo_save_draw.obj,vbo_save_loopback.obj,\
- vbo_split.obj,vbo_split_copy.obj,vbo_split_inplace.obj
-
-##### RULES #####
-
-VERSION=Mesa V3.4
-
-##### TARGETS #####
-# Make the library
-$(LIBDIR)$(GL_LIB) : $(OBJECTS)
- @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
-
-clean :
- purge
- delete *.obj;*
-
-vbo_context.obj : vbo_context.c
-vbo_exec.obj : vbo_exec.c
-vbo_exec_api.obj : vbo_exec_api.c
-vbo_exec_array.obj : vbo_exec_array.c
-vbo_exec_draw.obj : vbo_exec_draw.c
-vbo_exec_eval.obj : vbo_exec_eval.c
-vbo_rebase.obj : vbo_rebase.c
-vbo_save.obj : vbo_save.c
-vbo_save_api.obj : vbo_save_api.c
-vbo_save_draw.obj : vbo_save_draw.c
-vbo_save_loopback.obj : vbo_save_loopback.c
-vbo_split.obj : vbo_split.c
-vbo_split_copy.obj : vbo_split_copy.c
-vbo_split_inplace.obj : vbo_split_inplace.c
+++ /dev/null
-$! Analyze Map for OpenVMS AXP
-$!
-$! Originally found in the distribution of gv
-$! http://wwwthep.physik.uni-mainz.de/~plass/gv/
-$!
-$! 1-Jul-1999 : modified to be used with $BSS$ & $READONLY sections in the
-$! map-file by J. Jansen (joukj@hrem.stm.tudelft.nl)
-$!
-$ SET SYMBOL/GENERAL/SCOPE=(NOLOCAL,NOGLOBAL)
-$ SAY := "WRITE_ SYS$OUTPUT"
-$
-$ IF F$SEARCH("''P1'") .EQS. ""
-$ THEN
-$ SAY " ANALYZE_MAP.COM: Error, no mapfile provided"
-$ EXIT_
-$ ENDIF
-$ IF "''P2'" .EQS. ""
-$ THEN
-$ SAY " ANALYZE_MAP.COM: Error, no output file provided"
-$ EXIT_
-$ ENDIF
-$
-$ LINK_TMP = F$PARSE(P2,,,"DEVICE")+F$PARSE(P2,,,"DIRECTORY")+F$PARSE(P2,,,"NAME")+".TMP"
-$
-$ SAY " checking PSECT list in ''P2'"
-$ OPEN_/READ IN 'P1'
-$ LOOP_PSECT_SEARCH:
-$ READ_/END=EOF_PSECT IN REC
-$ LOOP_PSECT_SEARCH0:
-$ if F$EXTRACT(0,5,REC) .eqs. "$DATA" .or. F$EXTRACT(0,5,REC) .eqs. -
- "$BSS$" .or. f$extract(0,10,rec) .eqs. "$READONLY$" then goto do_data
-$ if F$EXTRACT(0,14,REC) .eqs. "$READONLY_ADDR" then goto do_readonly
-$ goto LOOP_PSECT_SEARCH
-$ do_data:
-$ LAST = ""
-$ LOOP_PSECT:
-$ READ_/END=EOF_PSECT IN REC
-$ if F$EXTRACT(0,1,REC) .eqs. "$" .and. F$EXTRACT(0,5,REC) .nes. "$DATA" -
- .and. F$EXTRACT(0,5,REC) .nes. "$BSS$" .and. f$extract(0,10,rec) -
- .nes. "$READONLY$" then goto LOOP_PSECT_SEARCH0
-$ if REC - "NOPIC,OVR,REL,GBL,NOSHR,NOEXE, WRT,NOVEC" .nes. REC
-$ then
-$ J = F$LOCATE(" ",REC)
-$ S = F$EXTRACT(0,J,REC)
-$ IF S .EQS. LAST THEN GOTO LOOP_PSECT
-$ P$_'S= 1
-$ LAST = S
-$ endif
-$ if REC - "NOPIC,OVR,REL,GBL,NOSHR,NOEXE,NOWRT,NOVEC" .nes. REC
-$ then
-$ J = F$LOCATE(" ",REC)
-$ S = F$EXTRACT(0,J,REC)
-$ IF S .EQS. LAST THEN GOTO LOOP_PSECT
-$ P$_'S= 1
-$ LAST = S
-$ endif
-$ GOTO LOOP_PSECT
-$
-$ do_readonly:
-$ LAST = ""
-$ LOOP_PSECT3:
-$ READ_/END=EOF_PSECT IN REC
-$ if F$EXTRACT(0,1,REC) .eqs. "-" .or. F$EXTRACT(0,3,REC) .eqs. "NL:" then -
- goto loop_psect3
-$ if F$EXTRACT(0,1,REC) .eqs. "$" .and. F$EXTRACT(0,14,REC) .nes. -
- "$READONLY_ADDR" then goto LOOP_PSECT_SEARCH0
-$ if REC - "OCTA" .nes. REC
-$ then
-$ J = F$LOCATE(" ",REC)
-$ S = F$EXTRACT(0,J,REC)
-$ IF S .EQS. LAST THEN GOTO LOOP_PSECT3
-$ P$_'S= 1
-$ LAST = S
-$ endif
-$ GOTO LOOP_PSECT3
-$
-$ EOF_PSECT:
-$ CLOSE_ IN
-$
-$ SAY " appending list of UNIVERSAL procedures to ''P2'"
-$ SEARCH_/NOHIGH/WINDOW=(0,0) 'P1' " R-"/OUT='LINK_TMP
-$ OPEN_/READ IN 'LINK_TMP
-$ OPEN_/write OUT 'P2'
-$ WRITE_ OUT "!"
-$ WRITE_ OUT "! ### UNIVERSAL procedures and global definitions extracted from ''P1'"
-$ WRITE_ OUT "!"
-$ write_ OUT "case_sensitive=YES"
-$ LOOP_UNIVERSAL:
-$ READ_/END=EOF_UNIVERSAL IN REC
-$ J = F$LOCATE(" R-",REC)
-$ S = F$EXTRACT(J+3,F$length(rec),REC)
-$ J = F$LOCATE(" ",S)
-$ S = F$EXTRACT(0,J,S)
-$ PP$_'S= 1
-$ IF F$TYPE(P$_'S').EQS.""
-$ THEN
-$ WRITE_ OUT "symbol_vector = ("+S+" = PROCEDURE)"
-$ ELSE
-$ WRITE_ OUT "symbol_vector = ("+S+" = DATA)"
-$ ENDIF
-$ GOTO LOOP_UNIVERSAL
-$ EOF_UNIVERSAL:
-$ CLOSE_ IN
-$ CLOSE_ OUT
-$!
-$ SAY " creating PSECT list in ''P2'"
-$ OPEN_/READ IN 'P1'
-$ OPEN_/append OUT 'P2'
-$ WRITE_ OUT "!"
-$ WRITE_ OUT "! ### PSECT list extracted from ''P1'"
-$ WRITE_ OUT "!"
-$ LOOP_PSECT_SEARCH1:
-$ READ_/END=EOF_PSECT1 IN REC
-$ if F$EXTRACT(0,5,REC) .nes. "$DATA" .and. F$EXTRACT(0,5,REC) .nes. -
- "$BSS$" .and. f$extract(0,10,rec) .nes. "$READONLY$" then goto -
- LOOP_PSECT_SEARCH1
-$ LAST = ""
-$ LOOP_PSECT1:
-$ READ_/END=EOF_PSECT1 IN REC
-$ if F$EXTRACT(0,1,REC) .eqs. "$" .and. F$EXTRACT(0,5,REC) .nes. "$DATA" -
- .and. F$EXTRACT(0,5,REC) .nes. "$BSS$" .and. f$extract(0,10,rec) -
- .nes. "$READONLY$" then goto LOOP_PSECT_SEARCH1
-$ if REC - "NOPIC,OVR,REL,GBL,NOSHR,NOEXE, WRT,NOVEC" .nes. REC
-$ then
-$ J = F$LOCATE(" ",REC)
-$ S = F$EXTRACT(0,J,REC)
-$ IF S .EQS. LAST THEN GOTO LOOP_PSECT1
-$ IF F$TYPE(PP$_'S').nes."" then WRITE_ OUT "symbol_vector = (" + S + " = PSECT)"
-$ P$_'S= 1
-$ LAST = S
-$ endif
-$ if REC - "NOPIC,OVR,REL,GBL,NOSHR,NOEXE,NOWRT,NOVEC" .nes. REC
-$ then
-$ J = F$LOCATE(" ",REC)
-$ S = F$EXTRACT(0,J,REC)
-$ IF S .EQS. LAST THEN GOTO LOOP_PSECT1
-$ IF F$TYPE(PP$_'S').nes."" then WRITE_ OUT "symbol_vector = (" + S + " = PSECT)"
-$ P$_'S= 1
-$ LAST = S
-$ endif
-$ GOTO LOOP_PSECT1
-$
-$ EOF_PSECT1:
-$ CLOSE_ IN
-$ CLOSE_ OUT
-$ if f$search("''LINK_TMP'") .nes. "" then DELETE_/NOLOG/NOCONFIRM 'LINK_TMP';*
-$
-$ EXIT_
+++ /dev/null
-sys$library:decw$xlibshr.exe/share
-sys$library:decw$xmulibshr.exe/share
+++ /dev/null
-[--.lib]libmesagl.exe/share
-[--.lib]libmesaglu.exe/share
-[--.lib]libglut.exe/share
-sys$library:decw$xlibshr.exe/share
-sys$library:decw$xmulibshr.exe/share
-sys$library:decw$xmlibshr12/share
-sys$library:decw$xtlibshrr5/share
+++ /dev/null
-# Microsoft Developer Studio Project File - Name="gdi" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102\r
-\r
-CFG=gdi - Win32 Debug x86\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "gdi.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "gdi.mak" CFG="gdi - Win32 Debug x86"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "gdi - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "gdi - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "gdi - Win32 Release x86" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "gdi - Win32 Debug x86" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-MTL=midl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "gdi - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /YX /FD /c\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../main" /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386\r
-# ADD LINK32 mesa.lib winmm.lib msvcrt.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/OPENGL32.DLL" /libpath:"../mesa/Release"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release\OPENGL32.LIB ..\..\..\..\lib copy Release\OPENGL32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release\OPENGL32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "gdi - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /FR /FD /GZ /c\r
-# SUBTRACT CPP /YX /Yc /Yu\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 mesa.lib winmm.lib msvcrtd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/OPENGL32.DLL" /pdbtype:sept /libpath:"../mesa/Debug"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug\OPENGL32.LIB ..\..\..\..\lib copy Debug\OPENGL32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug\OPENGL32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "gdi - Win32 Release x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "gdi___Win32_Release_x86"\r
-# PROP BASE Intermediate_Dir "gdi___Win32_Release_x86"\r
-# PROP BASE Ignore_Export_Lib 0\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release_x86"\r
-# PROP Intermediate_Dir "Release_x86"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /I "../../main" /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /FD /c\r
-# SUBTRACT BASE CPP /YX\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../main" /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 mesa.lib winmm.lib msvcrt.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/OPENGL32.DLL" /libpath:"../mesa/Release"\r
-# ADD LINK32 mesa.lib winmm.lib msvcrt.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release_x86/OPENGL32.DLL" /libpath:"../mesa/Release_x86"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release_x86\OPENGL32.LIB ..\..\..\..\lib copy Release_x86\OPENGL32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release_x86\OPENGL32.DLL ..\..\..\..\progs\demos copy Release_x86\OPENGL32.DLL "C:\Documents and Settings\mjk\Pulpit\pen\noise-demo"\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "gdi - Win32 Debug x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "gdi___Win32_Debug_x86"\r
-# PROP BASE Intermediate_Dir "gdi___Win32_Debug_x86"\r
-# PROP BASE Ignore_Export_Lib 0\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug_x86"\r
-# PROP Intermediate_Dir "Debug_x86"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /FR /FD /GZ /c\r
-# SUBTRACT BASE CPP /YX /Yc /Yu\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GDI_EXPORTS" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /FR /FD /GZ /c\r
-# SUBTRACT CPP /YX /Yc /Yu\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 mesa.lib winmm.lib msvcrtd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/OPENGL32.DLL" /pdbtype:sept /libpath:"../mesa/Debug"\r
-# ADD LINK32 mesa.lib winmm.lib msvcrtd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug_x86/OPENGL32.DLL" /pdbtype:sept /libpath:"../mesa/Debug_x86"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug_x86\OPENGL32.LIB ..\..\..\..\lib copy Debug_x86\OPENGL32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug_x86\OPENGL32.DLL ..\..\..\..\progs\demos copy Debug_x86\OPENGL32.DLL "C:\Documents and Settings\mjk\Pulpit\pen\noise-demo"\r
-# End Special Build Tool\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "gdi - Win32 Release"\r
-# Name "gdi - Win32 Debug"\r
-# Name "gdi - Win32 Release x86"\r
-# Name "gdi - Win32 Debug x86"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\common\driverfuncs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\windows\gdi\wgl.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\windows\gdi\wmesa.c\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\windows\gdi\colors.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\common\driverfuncs.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\windows\gdi\wmesadef.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# End Target\r
-# End Project\r
+++ /dev/null
-/nologo /W2 /GX- /Zi /Od /c /TP
-/I "../../../../include"
-/I "../../../../src/glu/sgi/include"
-/I "../../../../src/glu/sgi/libnurbs/interface"
-/I "../../../../src/glu/sgi/libnurbs/internals"
-/I "../../../../src/glu/sgi/libnurbs/nurbtess"
-/D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS"
-/D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /D "LIBRARYBUILD"
-/Fo"Debug/" /Fd"Debug/" /GZ
-../../../../src/glu/sgi/libnurbs/interface/bezierEval.cc
-../../../../src/glu/sgi/libnurbs/interface/bezierPatch.cc
-../../../../src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc
-../../../../src/glu/sgi/libnurbs/interface/glcurveval.cc
-../../../../src/glu/sgi/libnurbs/interface/glinterface.cc
-../../../../src/glu/sgi/libnurbs/interface/glrenderer.cc
-../../../../src/glu/sgi/libnurbs/interface/glsurfeval.cc
-../../../../src/glu/sgi/libnurbs/interface/incurveeval.cc
-../../../../src/glu/sgi/libnurbs/interface/insurfeval.cc
-../../../../src/glu/sgi/libnurbs/internals/arc.cc
-../../../../src/glu/sgi/libnurbs/internals/arcsorter.cc
-../../../../src/glu/sgi/libnurbs/internals/arctess.cc
-../../../../src/glu/sgi/libnurbs/internals/backend.cc
-../../../../src/glu/sgi/libnurbs/internals/basiccrveval.cc
-../../../../src/glu/sgi/libnurbs/internals/basicsurfeval.cc
-../../../../src/glu/sgi/libnurbs/internals/bin.cc
-../../../../src/glu/sgi/libnurbs/internals/bufpool.cc
-../../../../src/glu/sgi/libnurbs/internals/cachingeval.cc
-../../../../src/glu/sgi/libnurbs/internals/ccw.cc
-../../../../src/glu/sgi/libnurbs/internals/coveandtiler.cc
-../../../../src/glu/sgi/libnurbs/internals/curve.cc
-../../../../src/glu/sgi/libnurbs/internals/curvelist.cc
-../../../../src/glu/sgi/libnurbs/internals/curvesub.cc
-../../../../src/glu/sgi/libnurbs/internals/dataTransform.cc
-../../../../src/glu/sgi/libnurbs/internals/displaylist.cc
-../../../../src/glu/sgi/libnurbs/internals/flist.cc
-../../../../src/glu/sgi/libnurbs/internals/flistsorter.cc
-../../../../src/glu/sgi/libnurbs/internals/hull.cc
-../../../../src/glu/sgi/libnurbs/internals/intersect.cc
-../../../../src/glu/sgi/libnurbs/internals/knotvector.cc
-../../../../src/glu/sgi/libnurbs/internals/mapdesc.cc
-../../../../src/glu/sgi/libnurbs/internals/mapdescv.cc
-../../../../src/glu/sgi/libnurbs/internals/maplist.cc
-../../../../src/glu/sgi/libnurbs/internals/mesher.cc
-../../../../src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc
-../../../../src/glu/sgi/libnurbs/internals/monotonizer.cc
-../../../../src/glu/sgi/libnurbs/internals/mycode.cc
-../../../../src/glu/sgi/libnurbs/internals/nurbsinterfac.cc
-../../../../src/glu/sgi/libnurbs/internals/nurbstess.cc
-../../../../src/glu/sgi/libnurbs/internals/patch.cc
-../../../../src/glu/sgi/libnurbs/internals/patchlist.cc
-../../../../src/glu/sgi/libnurbs/internals/quilt.cc
-../../../../src/glu/sgi/libnurbs/internals/reader.cc
-../../../../src/glu/sgi/libnurbs/internals/renderhints.cc
-../../../../src/glu/sgi/libnurbs/internals/slicer.cc
-../../../../src/glu/sgi/libnurbs/internals/sorter.cc
-../../../../src/glu/sgi/libnurbs/internals/splitarcs.cc
-../../../../src/glu/sgi/libnurbs/internals/subdivider.cc
-../../../../src/glu/sgi/libnurbs/internals/tobezier.cc
-../../../../src/glu/sgi/libnurbs/internals/trimline.cc
-../../../../src/glu/sgi/libnurbs/internals/trimregion.cc
-../../../../src/glu/sgi/libnurbs/internals/trimvertpool.cc
-../../../../src/glu/sgi/libnurbs/internals/uarray.cc
-../../../../src/glu/sgi/libnurbs/internals/varray.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/directedLine.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/gridWrap.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/monoChain.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/monoPolyPart.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/monoTriangulation.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/partitionX.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/partitionY.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/polyDBG.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/polyUtil.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/primitiveStream.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/quicksort.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/rectBlock.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleComp.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleCompBot.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleCompRight.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampledLine.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/searchTree.cc
+++ /dev/null
-/nologo /W2 /GX- /O2 /c /TP
-/I "../../../../include"
-/I "../../../../src/glu/sgi/include"
-/I "../../../../src/glu/sgi/libnurbs/interface"
-/I "../../../../src/glu/sgi/libnurbs/internals"
-/I "../../../../src/glu/sgi/libnurbs/nurbtess"
-/D "WIN32" /D "_WINDOWS" /D "_MBCS"
-/D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /D "LIBRARYBUILD"
-/Fo"Release/"
-../../../../src/glu/sgi/libnurbs/interface/bezierEval.cc
-../../../../src/glu/sgi/libnurbs/interface/bezierPatch.cc
-../../../../src/glu/sgi/libnurbs/interface/bezierPatchMesh.cc
-../../../../src/glu/sgi/libnurbs/interface/glcurveval.cc
-../../../../src/glu/sgi/libnurbs/interface/glinterface.cc
-../../../../src/glu/sgi/libnurbs/interface/glrenderer.cc
-../../../../src/glu/sgi/libnurbs/interface/glsurfeval.cc
-../../../../src/glu/sgi/libnurbs/interface/incurveeval.cc
-../../../../src/glu/sgi/libnurbs/interface/insurfeval.cc
-../../../../src/glu/sgi/libnurbs/internals/arc.cc
-../../../../src/glu/sgi/libnurbs/internals/arcsorter.cc
-../../../../src/glu/sgi/libnurbs/internals/arctess.cc
-../../../../src/glu/sgi/libnurbs/internals/backend.cc
-../../../../src/glu/sgi/libnurbs/internals/basiccrveval.cc
-../../../../src/glu/sgi/libnurbs/internals/basicsurfeval.cc
-../../../../src/glu/sgi/libnurbs/internals/bin.cc
-../../../../src/glu/sgi/libnurbs/internals/bufpool.cc
-../../../../src/glu/sgi/libnurbs/internals/cachingeval.cc
-../../../../src/glu/sgi/libnurbs/internals/ccw.cc
-../../../../src/glu/sgi/libnurbs/internals/coveandtiler.cc
-../../../../src/glu/sgi/libnurbs/internals/curve.cc
-../../../../src/glu/sgi/libnurbs/internals/curvelist.cc
-../../../../src/glu/sgi/libnurbs/internals/curvesub.cc
-../../../../src/glu/sgi/libnurbs/internals/dataTransform.cc
-../../../../src/glu/sgi/libnurbs/internals/displaylist.cc
-../../../../src/glu/sgi/libnurbs/internals/flist.cc
-../../../../src/glu/sgi/libnurbs/internals/flistsorter.cc
-../../../../src/glu/sgi/libnurbs/internals/hull.cc
-../../../../src/glu/sgi/libnurbs/internals/intersect.cc
-../../../../src/glu/sgi/libnurbs/internals/knotvector.cc
-../../../../src/glu/sgi/libnurbs/internals/mapdesc.cc
-../../../../src/glu/sgi/libnurbs/internals/mapdescv.cc
-../../../../src/glu/sgi/libnurbs/internals/maplist.cc
-../../../../src/glu/sgi/libnurbs/internals/mesher.cc
-../../../../src/glu/sgi/libnurbs/internals/monoTriangulationBackend.cc
-../../../../src/glu/sgi/libnurbs/internals/monotonizer.cc
-../../../../src/glu/sgi/libnurbs/internals/mycode.cc
-../../../../src/glu/sgi/libnurbs/internals/nurbsinterfac.cc
-../../../../src/glu/sgi/libnurbs/internals/nurbstess.cc
-../../../../src/glu/sgi/libnurbs/internals/patch.cc
-../../../../src/glu/sgi/libnurbs/internals/patchlist.cc
-../../../../src/glu/sgi/libnurbs/internals/quilt.cc
-../../../../src/glu/sgi/libnurbs/internals/reader.cc
-../../../../src/glu/sgi/libnurbs/internals/renderhints.cc
-../../../../src/glu/sgi/libnurbs/internals/slicer.cc
-../../../../src/glu/sgi/libnurbs/internals/sorter.cc
-../../../../src/glu/sgi/libnurbs/internals/splitarcs.cc
-../../../../src/glu/sgi/libnurbs/internals/subdivider.cc
-../../../../src/glu/sgi/libnurbs/internals/tobezier.cc
-../../../../src/glu/sgi/libnurbs/internals/trimline.cc
-../../../../src/glu/sgi/libnurbs/internals/trimregion.cc
-../../../../src/glu/sgi/libnurbs/internals/trimvertpool.cc
-../../../../src/glu/sgi/libnurbs/internals/uarray.cc
-../../../../src/glu/sgi/libnurbs/internals/varray.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/directedLine.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/gridWrap.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/monoChain.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/monoPolyPart.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/monoTriangulation.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/partitionX.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/partitionY.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/polyDBG.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/polyUtil.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/primitiveStream.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/quicksort.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/rectBlock.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleComp.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleCompBot.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleCompRight.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampleMonoPoly.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/sampledLine.cc
-../../../../src/glu/sgi/libnurbs/nurbtess/searchTree.cc
+++ /dev/null
-# Microsoft Developer Studio Project File - Name="glu" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102\r
-\r
-CFG=glu - Win32 Debug x86\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "glu.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "glu.mak" CFG="glu - Win32 Debug x86"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "glu - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "glu - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "glu - Win32 Release x86" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "glu - Win32 Debug x86" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-MTL=midl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /YX /FD /c\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/glu/sgi/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386\r
-# ADD LINK32 msvcrt.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib Release/glucc.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/GLU32.DLL" /libpath:"../gdi/Release"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PreLink_Desc=C++ Compilations\r
-PreLink_Cmds=cl @compileRelease.txt LIB /OUT:Release/GLUCC.LIB @objectsRelease.txt\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release\GLU32.LIB ..\..\..\..\lib copy Release\GLU32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release\GLU32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/glu/sgi/include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /FD /GZ /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 msvcrtd.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib Debug/glucc.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/GLU32.DLL" /pdbtype:sept /libpath:"../gdi/Debug"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PreLink_Desc=C++ Compilations\r
-PreLink_Cmds=cl @compileDebug.txt LIB /OUT:Debug/GLUCC.LIB @objectsDebug.txt\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug\GLU32.LIB ..\..\..\..\lib copy Debug\GLU32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug\GLU32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "glu___Win32_Release_x86"\r
-# PROP BASE Intermediate_Dir "glu___Win32_Release_x86"\r
-# PROP BASE Ignore_Export_Lib 0\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release_x86"\r
-# PROP Intermediate_Dir "Release_x86"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/glu/sgi/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /FD /c\r
-# SUBTRACT BASE CPP /YX\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/glu/sgi/include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 msvcrt.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib Release/glucc.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/GLU32.DLL" /libpath:"../gdi/Release"\r
-# ADD LINK32 msvcrt.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib Release/glucc.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release_x86/GLU32.DLL" /libpath:"../gdi/Release_x86"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PreLink_Desc=C++ Compilations\r
-PreLink_Cmds=cl @compileRelease.txt LIB /OUT:Release/GLUCC.LIB @objectsRelease.txt\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release_x86\GLU32.LIB ..\..\..\..\lib copy Release_x86\GLU32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release_x86\GLU32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "glu___Win32_Debug_x86"\r
-# PROP BASE Intermediate_Dir "glu___Win32_Debug_x86"\r
-# PROP BASE Ignore_Export_Lib 0\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug_x86"\r
-# PROP Intermediate_Dir "Debug_x86"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/glu/sgi/include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /FD /GZ /c\r
-# SUBTRACT BASE CPP /YX\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/glu/sgi/include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLU_EXPORTS" /D "BUILD_GL32" /FD /GZ /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 msvcrtd.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib Debug/glucc.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/GLU32.DLL" /pdbtype:sept /libpath:"../gdi/Debug"\r
-# ADD LINK32 msvcrtd.lib winmm.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib Debug/glucc.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug_x86/GLU32.DLL" /pdbtype:sept /libpath:"../gdi/Debug_x86"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PreLink_Desc=C++ Compilations\r
-PreLink_Cmds=cl @compileDebug.txt LIB /OUT:Debug/GLUCC.LIB @objectsDebug.txt\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug_x86\GLU32.LIB ..\..\..\..\lib copy Debug_x86\GLU32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug_x86\GLU32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "glu - Win32 Release"\r
-# Name "glu - Win32 Debug"\r
-# Name "glu - Win32 Release x86"\r
-# Name "glu - Win32 Debug x86"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\dict.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\error.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\geom.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\glu.def\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\glue.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\memalloc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\mesh.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\mipmap.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\normal.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE="..\..\..\..\src\glu\sgi\libtess\priorityq-heap.c"\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\priorityq.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\project.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\quad.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\registry.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\render.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\sweep.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\tess.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\tessmono.c\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\arc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\arcsorter.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\arctess.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\backend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\basiccrveval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\basicsurfeval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\bezierarc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\bezierEval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatch.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatchMesh.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\bin.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\bufpool.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\cachingeval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\coveandtiler.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\curve.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\curvelist.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\dataTransform.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\defines.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\definitions.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE="..\..\..\..\src\glu\sgi\libtess\dict-list.h"\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\dict.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\directedLine.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\displaylist.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\displaymode.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\flist.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\flistsorter.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\geom.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glcurveval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glimports.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\glimports.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glrenderer.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glsurfeval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libutil\gluint.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\include\gluos.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\gridline.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\gridtrimvertex.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\gridvertex.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\gridWrap.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\hull.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\jarcloc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\knotvector.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mapdesc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\maplist.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\memalloc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\mesh.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mesher.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoChain.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoPolyPart.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\monotonizer.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoTriangulation.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\myassert.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mymath.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mysetjmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\mystdio.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\mystdio.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\mystdlib.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\mystdlib.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mystring.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\normal.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\nurbsconsts.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\nurbstess.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionX.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionY.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\patch.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\patchlist.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyDBG.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyUtil.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\primitiveStream.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE="..\..\..\..\src\glu\sgi\libtess\priorityq-heap.h"\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE="..\..\..\..\src\glu\sgi\libtess\priorityq-sort.h"\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\priorityq.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\pwlarc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\quicksort.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\quilt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\reader.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\rectBlock.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\render.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\renderhints.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleComp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompBot.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompRight.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompTop.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampledLine.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleMonoPoly.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\searchTree.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\simplemath.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\slicer.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\sorter.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\subdivider.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\sweep.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\tess.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\tessmono.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimline.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimregion.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertex.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertpool.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\types.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\uarray.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\varray.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\zlassert.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# Begin Group "C++ files"\r
-\r
-# PROP Default_Filter ".cc"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\arc.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\arcsorter.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\arctess.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\backend.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\basiccrveval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\basicsurfeval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\bezierEval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatch.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatchMesh.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\bin.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\bufpool.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\cachingeval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\ccw.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\coveandtiler.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\curve.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\curvelist.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\curvesub.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\dataTransform.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\directedLine.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\displaylist.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\flist.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\flistsorter.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glcurveval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glinterface.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glrenderer.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\glsurfeval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\gridWrap.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\hull.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\incurveeval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\interface\insurfeval.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\intersect.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\knotvector.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mapdesc.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mapdescv.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\maplist.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mesher.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoChain.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoPolyPart.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\monotonizer.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoTriangulation.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\monoTriangulationBackend.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\mycode.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\nurbsinterfac.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\nurbstess.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionX.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionY.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\patch.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\patchlist.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyDBG.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyUtil.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\primitiveStream.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\quicksort.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\quilt.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\reader.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libtess\README\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\rectBlock.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\renderhints.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleComp.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompBot.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompRight.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompTop.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampledLine.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleMonoPoly.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\nurbtess\searchTree.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\slicer.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\sorter.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\splitarcs.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\subdivider.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\tobezier.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimline.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimregion.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertpool.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\uarray.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glu\sgi\libnurbs\internals\varray.cc\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# End Group\r
-# Begin Source File\r
-\r
-SOURCE="..\..\..\..\src\glu\sgi\libtess\alg-outline"\r
-\r
-!IF "$(CFG)" == "glu - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "glu - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\compileDebug.txt\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\compileRelease.txt\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\objectsDebug.txt\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\objectsRelease.txt\r
-# End Source File\r
-# End Target\r
-# End Project\r
+++ /dev/null
-Debug/bezierEval.obj
-Debug/bezierPatch.obj
-Debug/bezierPatchMesh.obj
-Debug/glcurveval.obj
-Debug/glinterface.obj
-Debug/glrenderer.obj
-Debug/glsurfeval.obj
-Debug/incurveeval.obj
-Debug/insurfeval.obj
-Debug/arc.obj
-Debug/arcsorter.obj
-Debug/arctess.obj
-Debug/backend.obj
-Debug/basiccrveval.obj
-Debug/basicsurfeval.obj
-Debug/bin.obj
-Debug/bufpool.obj
-Debug/cachingeval.obj
-Debug/ccw.obj
-Debug/coveandtiler.obj
-Debug/curve.obj
-Debug/curvelist.obj
-Debug/curvesub.obj
-Debug/dataTransform.obj
-Debug/displaylist.obj
-Debug/flist.obj
-Debug/flistsorter.obj
-Debug/hull.obj
-Debug/intersect.obj
-Debug/knotvector.obj
-Debug/mapdesc.obj
-Debug/mapdescv.obj
-Debug/maplist.obj
-Debug/mesher.obj
-Debug/monoTriangulationBackend.obj
-Debug/monotonizer.obj
-Debug/mycode.obj
-Debug/nurbsinterfac.obj
-Debug/nurbstess.obj
-Debug/patch.obj
-Debug/patchlist.obj
-Debug/quilt.obj
-Debug/reader.obj
-Debug/renderhints.obj
-Debug/slicer.obj
-Debug/sorter.obj
-Debug/splitarcs.obj
-Debug/subdivider.obj
-Debug/tobezier.obj
-Debug/trimline.obj
-Debug/trimregion.obj
-Debug/trimvertpool.obj
-Debug/uarray.obj
-Debug/varray.obj
-Debug/directedLine.obj
-Debug/gridWrap.obj
-Debug/monoChain.obj
-Debug/monoPolyPart.obj
-Debug/monoTriangulation.obj
-Debug/partitionX.obj
-Debug/partitionY.obj
-Debug/polyDBG.obj
-Debug/polyUtil.obj
-Debug/primitiveStream.obj
-Debug/quicksort.obj
-Debug/rectBlock.obj
-Debug/sampleComp.obj
-Debug/sampleCompBot.obj
-Debug/sampleCompRight.obj
-Debug/sampleCompTop.obj
-Debug/sampleMonoPoly.obj
-Debug/sampledLine.obj
-Debug/searchTree.obj
+++ /dev/null
-Release/bezierEval.obj
-Release/bezierPatch.obj
-Release/bezierPatchMesh.obj
-Release/glcurveval.obj
-Release/glinterface.obj
-Release/glrenderer.obj
-Release/glsurfeval.obj
-Release/incurveeval.obj
-Release/insurfeval.obj
-Release/arc.obj
-Release/arcsorter.obj
-Release/arctess.obj
-Release/backend.obj
-Release/basiccrveval.obj
-Release/basicsurfeval.obj
-Release/bin.obj
-Release/bufpool.obj
-Release/cachingeval.obj
-Release/ccw.obj
-Release/coveandtiler.obj
-Release/curve.obj
-Release/curvelist.obj
-Release/curvesub.obj
-Release/dataTransform.obj
-Release/displaylist.obj
-Release/flist.obj
-Release/flistsorter.obj
-Release/hull.obj
-Release/intersect.obj
-Release/knotvector.obj
-Release/mapdesc.obj
-Release/mapdescv.obj
-Release/maplist.obj
-Release/mesher.obj
-Release/monoTriangulationBackend.obj
-Release/monotonizer.obj
-Release/mycode.obj
-Release/nurbsinterfac.obj
-Release/nurbstess.obj
-Release/patch.obj
-Release/patchlist.obj
-Release/quilt.obj
-Release/reader.obj
-Release/renderhints.obj
-Release/slicer.obj
-Release/sorter.obj
-Release/splitarcs.obj
-Release/subdivider.obj
-Release/tobezier.obj
-Release/trimline.obj
-Release/trimregion.obj
-Release/trimvertpool.obj
-Release/uarray.obj
-Release/varray.obj
-Release/directedLine.obj
-Release/gridWrap.obj
-Release/monoChain.obj
-Release/monoPolyPart.obj
-Release/monoTriangulation.obj
-Release/partitionX.obj
-Release/partitionY.obj
-Release/polyDBG.obj
-Release/polyUtil.obj
-Release/primitiveStream.obj
-Release/quicksort.obj
-Release/rectBlock.obj
-Release/sampleComp.obj
-Release/sampleCompBot.obj
-Release/sampleCompRight.obj
-Release/sampleCompTop.obj
-Release/sampleMonoPoly.obj
-Release/sampledLine.obj
-Release/searchTree.obj
+++ /dev/null
-Microsoft Developer Studio Workspace File, Format Version 6.00\r
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r
-\r
-###############################################################################\r
-\r
-Project: "gdi"=.\gdi\gdi.dsp - Package Owner=<4>\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<4>\r
-{{{\r
- Begin Project Dependency\r
- Project_Dep_Name mesa\r
- End Project Dependency\r
-}}}\r
-\r
-###############################################################################\r
-\r
-Project: "glu"=.\glu\glu.dsp - Package Owner=<4>\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<4>\r
-{{{\r
- Begin Project Dependency\r
- Project_Dep_Name gdi\r
- End Project Dependency\r
-}}}\r
-\r
-###############################################################################\r
-\r
-Project: "mesa"=.\mesa\mesa.dsp - Package Owner=<4>\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<4>\r
-{{{\r
-}}}\r
-\r
-###############################################################################\r
-\r
-Project: "osmesa"=.\osmesa\osmesa.dsp - Package Owner=<4>\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<4>\r
-{{{\r
- Begin Project Dependency\r
- Project_Dep_Name gdi\r
- End Project Dependency\r
-}}}\r
-\r
-###############################################################################\r
-\r
-Global:\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<3>\r
-{{{\r
-}}}\r
-\r
-###############################################################################\r
-\r
+++ /dev/null
-# Microsoft Developer Studio Project File - Name="mesa" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Static Library" 0x0104\r
-\r
-CFG=mesa - Win32 Debug x86\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "mesa.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "mesa.mak" CFG="mesa - Win32 Debug x86"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "mesa - Win32 Release" (based on "Win32 (x86) Static Library")\r
-!MESSAGE "mesa - Win32 Debug" (based on "Win32 (x86) Static Library")\r
-!MESSAGE "mesa - Win32 Release x86" (based on "Win32 (x86) Static Library")\r
-!MESSAGE "mesa - Win32 Debug x86" (based on "Win32 (x86) Static Library")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "mesa - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c\r
-# ADD CPP /nologo /W3 /GX /O2 /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/main" /I "../../../../src/mesa/shader" /I "../../../../src/mesa/shader/slang" /I "../../../../src/mesa/shader/grammar" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /YX /FD /Zm1000 /c\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LIB32=link.exe -lib\r
-# ADD BASE LIB32 /nologo\r
-# ADD LIB32 /nologo\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c\r
-# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/main" /I "../../../../src/mesa/shader" /I "../../../../src/mesa/shader/slang" /I "../../../../src/mesa/shader/grammar" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /Fr /FD /GZ /Zm1000 /c\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LIB32=link.exe -lib\r
-# ADD BASE LIB32 /nologo\r
-# ADD LIB32 /nologo\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Release x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "mesa___Win32_Release_x86"\r
-# PROP BASE Intermediate_Dir "mesa___Win32_Release_x86"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release_x86"\r
-# PROP Intermediate_Dir "Release_x86"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /GX /O2 /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/main" /I "../../../../src/mesa/shader" /I "../../../../src/mesa/shader/slang" /I "../../../../src/mesa/shader/grammar" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /YX /FD /Zm1000 /c\r
-# ADD CPP /nologo /W3 /GX /O2 /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/main" /I "../../../../src/mesa/shader" /I "../../../../src/mesa/shader/slang" /I "../../../../src/mesa/shader/grammar" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /D "SLANG_X86" /YX /FD /Zm1000 /c\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LIB32=link.exe -lib\r
-# ADD BASE LIB32 /nologo\r
-# ADD LIB32 /nologo\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "mesa___Win32_Debug_x86"\r
-# PROP BASE Intermediate_Dir "mesa___Win32_Debug_x86"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug_x86"\r
-# PROP Intermediate_Dir "Debug_x86"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/main" /I "../../../../src/mesa/shader" /I "../../../../src/mesa/shader/slang" /I "../../../../src/mesa/shader/grammar" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /Fr /FD /GZ /Zm1000 /c\r
-# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/main" /I "../../../../src/mesa/shader" /I "../../../../src/mesa/shader/slang" /I "../../../../src/mesa/shader/grammar" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "_DLL" /D "BUILD_GL32" /D "MESA_MINWARN" /D "SLANG_X86" /Fr /FD /GZ /Zm1000 /c\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LIB32=link.exe -lib\r
-# ADD BASE LIB32 /nologo\r
-# ADD LIB32 /nologo\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "mesa - Win32 Release"\r
-# Name "mesa - Win32 Debug"\r
-# Name "mesa - Win32 Release x86"\r
-# Name "mesa - Win32 Debug x86"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\array_cache\ac_context.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\array_cache\ac_import.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\accum.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_arrayelt.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_loopback.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_noop.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_validate.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\arrayobj.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\arbprogparse.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\arbprogram.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\atifragshader.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\attrib.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\blend.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\bufferobj.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\buffers.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\clip.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\colortab.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\context.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\convolve.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\debug.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\depth.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\depthstencil.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\dispatch.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\dlist.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\drawpix.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\enable.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\enums.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\eval.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\execmem.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\extensions.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\fbobject.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\feedback.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\fog.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\framebuffer.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\get.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\getstring.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glapi.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glthread.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\grammar\grammar.c\r
-\r
-!IF "$(CFG)" == "mesa - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\grammar\grammar_mesa.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\hash.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\hint.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\histogram.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\image.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\imports.c\r
-\r
-!IF "$(CFG)" == "mesa - Win32 Release"\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug"\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Release x86"\r
-\r
-# ADD CPP /YX\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug x86"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\light.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\lines.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_debug_clip.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_debug_norm.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_debug_xform.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_eval.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_matrix.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_translate.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_vector.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_xform.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\matrix.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\mipmap.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\mm.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvfragparse.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvprogram.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvvertexec.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvvertparse.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\occlude.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\pixel.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\points.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\polygon.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\program.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\rastpos.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\rbadaptors.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\renderbuffer.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_aaline.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_aatriangle.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_accum.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_alpha.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_arbshader.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_atifragshader.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_bitmap.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_blend.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_blit.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_buffers.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_context.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_copypix.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_depth.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_drawpix.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_feedback.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_fog.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_imaging.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_lines.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_logic.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_masking.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_nvfragprog.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_points.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_readpix.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_span.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_stencil.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_texcombine.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_texfilter.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_texstore.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_triangle.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_zoom.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\shaderobjects.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\shaderobjects_3dlabs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_analyse.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_assignment.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_conditional.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_constructor.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_typeinfo.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_function.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_operation.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_struct.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_variable.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_execute.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_execute_x86.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_export.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_library_noise.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_library_texsample.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_link.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_preprocess.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_storage.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_utility.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\ss_context.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\ss_triangle.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\state.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\stencil.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_array_api.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_array_import.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_context.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_pipeline.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_save_loopback.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_save_playback.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_arbprogram.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_arbshader.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_cull.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_fog.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_light.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_normals.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_points.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_program.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_render.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_texgen.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_texmat.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_vertex.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vertex.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vertex_generic.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vp_build.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vtx_api.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vtx_eval.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vtx_exec.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vtx_generic.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texcompress.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texcompress_fxt1.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texcompress_s3tc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texenvprogram.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texformat.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\teximage.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texobj.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texrender.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texstate.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texstore.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\varray.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\vsnprintf.c\r
-\r
-!IF "$(CFG)" == "mesa - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Release x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-# PROP Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\vtxfmt.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\x86\rtasm\x86sse.c\r
-\r
-!IF "$(CFG)" == "mesa - Win32 Release"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug"\r
-\r
-# PROP Exclude_From_Build 1\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Release x86"\r
-\r
-!ELSEIF "$(CFG)" == "mesa - Win32 Debug x86"\r
-\r
-# PROP BASE Exclude_From_Build 1\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\array_cache\ac_context.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\array_cache\acache.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\accum.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_arrayelt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_eval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_loopback.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_noop.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\api_validate.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\arrayobj.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\arbprogparse.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\arbprogram.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\arbprogram_syn.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\atifragshader.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\attrib.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\bitset.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\blend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\bufferobj.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\buffers.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\clip.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\colormac.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\colortab.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\config.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\context.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\convolve.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\dd.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\debug.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\depth.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\depthstencil.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\dlist.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\drawpix.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\enable.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\enums.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\eval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\extensions.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\fbobject.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\feedback.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\fog.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\framebuffer.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\get.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glapi.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glapioffsets.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glapitable.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glapitemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\glheader.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glprocs.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\glapi\glthread.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\grammar\grammar.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\grammar\grammar_mesa.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\grammar\grammar_syn.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\hash.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\hint.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\histogram.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\image.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\imports.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\light.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\lines.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_clip_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_copy_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_debug.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_debug_util.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_dotprod_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_eval.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_matrix.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_norm_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_trans_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_translate.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_vector.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_xform.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\m_xform_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\macros.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\math\mathmod.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\matrix.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\mm.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\mtypes.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvfragparse.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvfragprog.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvprogram.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvvertexec.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvvertparse.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\nvvertprog.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\occlude.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\pixel.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\points.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\polygon.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\program.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\rastpos.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\rbadaptors.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\renderbuffer.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_aaline.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_aalinetemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_aatriangle.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_aatritemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_accum.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_alpha.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_arbshader.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_atifragshader.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_blend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_context.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_depth.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_drawpix.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_feedback.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_fog.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_lines.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_linetemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_logic.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_masking.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_nvfragprog.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_points.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_pointtemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_span.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_spantemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_stencil.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_texcombine.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_texfilter.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_triangle.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_trispan.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_tritemp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\s_zoom.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\shaderobjects.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\shaderobjects_3dlabs.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\simple_list.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_analyse.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_assignment.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_conditional.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_constructor.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_assemble_typeinfo.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_function.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_operation.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_struct.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_compile_variable.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_execute.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_export.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_library_noise.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_library_texsample.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_link.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_mesa.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_preprocess.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_storage.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\slang_utility.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\ss_context.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\ss_triangle.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\ss_tritmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\ss_vb.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\state.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\stencil.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast\swrast.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\swrast_setup\swrast_setup.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_array_api.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_array_import.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_context.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_pipeline.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_save_api.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_arbprogram.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_cliptmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_lighttmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vb_rendertmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vertex.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vp_build.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\t_vtx_api.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texcompress.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texenvprogram.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texformat.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texformat_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\teximage.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texobj.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texrender.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texstate.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\texstore.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\tnl\tnl.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\shader\slang\traverse_wrap.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\varray.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\version.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\vtxfmt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\main\vtxfmt_tmp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\x86\rtasm\x86sse.h\r
-# End Source File\r
-# End Group\r
-# End Target\r
-# End Project\r
+++ /dev/null
-# Microsoft Developer Studio Project File - Name="osmesa" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102\r
-\r
-CFG=osmesa - Win32 Debug x86\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "osmesa.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "osmesa.mak" CFG="osmesa - Win32 Debug x86"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "osmesa - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "osmesa - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "osmesa - Win32 Release x86" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "osmesa - Win32 Debug x86" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-MTL=midl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "osmesa - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /YX /FD /c\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386\r
-# ADD LINK32 opengl32.lib winmm.lib msvcrt.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/OSMESA32.DLL" /libpath:"../gdi/Release"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release\OSMESA32.LIB ..\..\..\..\lib copy Release\OSMESA32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release\OSMESA32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "osmesa - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /FD /GZ /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 opengl32.lib winmm.lib msvcrtd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/OSMESA32.DLL" /pdbtype:sept /libpath:"../gdi/Debug"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug\OSMESA32.LIB ..\..\..\..\lib copy Debug\OSMESA32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug\OSMESA32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "osmesa - Win32 Release x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "osmesa___Win32_Release_x86"\r
-# PROP BASE Intermediate_Dir "osmesa___Win32_Release_x86"\r
-# PROP BASE Ignore_Export_Lib 0\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release_x86"\r
-# PROP Intermediate_Dir "Release_x86"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /FD /c\r
-# SUBTRACT BASE CPP /YX\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 opengl32.lib winmm.lib msvcrt.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/OSMESA32.DLL" /libpath:"../gdi/Release"\r
-# ADD LINK32 opengl32.lib winmm.lib msvcrt.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release_x86/OSMESA32.DLL" /libpath:"../gdi/Release_x86"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release_x86\OSMESA32.LIB ..\..\..\..\lib copy Release_x86\OSMESA32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release_x86\OSMESA32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "osmesa - Win32 Debug x86"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "osmesa___Win32_Debug_x86"\r
-# PROP BASE Intermediate_Dir "osmesa___Win32_Debug_x86"\r
-# PROP BASE Ignore_Export_Lib 0\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug_x86"\r
-# PROP Intermediate_Dir "Debug_x86"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /FD /GZ /c\r
-# SUBTRACT BASE CPP /YX\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /I "../../../../src/mesa" /I "../../../../src/mesa/main" /I "../../../../src/mesa/glapi" /I "../../../../src/mesa/swrast" /I "../../../../src/mesa/shader" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "OSMESA_EXPORTS" /FD /GZ /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 opengl32.lib winmm.lib msvcrtd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/OSMESA32.DLL" /pdbtype:sept /libpath:"../gdi/Debug"\r
-# ADD LINK32 opengl32.lib winmm.lib msvcrtd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/OSMESA32.DLL" /pdbtype:sept /libpath:"../gdi/Debug_x86"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug_x86\OSMESA32.LIB ..\..\..\..\lib copy Debug_x86\OSMESA32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug_x86\OSMESA32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "osmesa - Win32 Release"\r
-# Name "osmesa - Win32 Debug"\r
-# Name "osmesa - Win32 Release x86"\r
-# Name "osmesa - Win32 Debug x86"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\common\driverfuncs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\osmesa\osmesa.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\mesa\drivers\osmesa\osmesa.def\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# End Target\r
-# End Project\r
+++ /dev/null
-# Microsoft Developer Studio Project File - Name="gears" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Console Application" 0x0103\r
-\r
-CFG=gears - Win32 Debug\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "gears.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "gears.mak" CFG="gears - Win32 Debug"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "gears - Win32 Release" (based on "Win32 (x86) Console Application")\r
-!MESSAGE "gears - Win32 Debug" (based on "Win32 (x86) Console Application")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "gears - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c\r
-# ADD CPP /nologo /W3 /GX /O2 /I "../../../../../include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r
-# ADD LINK32 glut32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /libpath:"../glut/Release"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=copy Release\gears.exe ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "gears - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "../../../../../include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 glut32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"../glut/Debug"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=copy Debug\gears.exe ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "gears - Win32 Release"\r
-# Name "gears - Win32 Debug"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\progs\demos\gears.c\r
-# ADD CPP /I "../../../../include"\r
-# SUBTRACT CPP /I "../../../../../include"\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# End Target\r
-# End Project\r
+++ /dev/null
-# Microsoft Developer Studio Project File - Name="glut" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102\r
-\r
-CFG=glut - Win32 Debug\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "glut.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "glut.mak" CFG="glut - Win32 Debug"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "glut - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE "glut - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-MTL=midl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "glut - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLUT_EXPORTS" /YX /FD /c\r
-# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../../../include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_DLL" /D "_USRDLL" /D "GLUT_EXPORTS" /D "MESA" /D "BUILD_GL32" /FD /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386\r
-# ADD LINK32 opengl32.lib glu32.lib winmm.lib msvcrt.lib oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /nodefaultlib /out:"Release/GLUT32.DLL" /libpath:"../../mesa/Release"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Release\GLUT32.LIB ..\..\..\..\lib copy Release\GLUT32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Release\GLUT32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ELSEIF "$(CFG)" == "glut - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Ignore_Export_Lib 0\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GLUT_EXPORTS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "../../../../include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_DLL" /D "_USRDLL" /D "GLUT_EXPORTS" /D "MESA" /D "BUILD_GL32" /FD /GZ /c\r
-# SUBTRACT CPP /YX\r
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 winmm.lib msvcrtd.lib oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib /nologo /dll /incremental:no /debug /machine:I386 /nodefaultlib /out:"Debug/GLUT32.DLL" /pdbtype:sept /libpath:"../../mesa/Debug"\r
-# Begin Special Build Tool\r
-SOURCE="$(InputPath)"\r
-PostBuild_Cmds=if not exist ..\..\..\..\lib md ..\..\..\..\lib copy Debug\GLUT32.LIB ..\..\..\..\lib copy Debug\GLUT32.DLL ..\..\..\..\lib if exist ..\..\..\..\progs\demos copy Debug\GLUT32.DLL ..\..\..\..\progs\demos\r
-# End Special Build Tool\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "glut - Win32 Release"\r
-# Name "glut - Win32 Debug"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_8x13.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_9x15.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_bitmap.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_bwidth.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_cindex.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_cmap.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_cursor.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_dials.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_dstr.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_event.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_ext.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_fbc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_fullscrn.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_gamemode.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_get.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_hel10.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_hel12.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_hel18.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_init.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_input.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_joy.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_key.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_keyctrl.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_keyup.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_mesa.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_modifier.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_mroman.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_overlay.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_roman.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_shapes.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_space.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_stroke.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_swap.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_swidth.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_tablet.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_teapot.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_tr10.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_tr24.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_util.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_vidresize.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_warp.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_win.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glut_winmisc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_glx.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_menu.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_util.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_winproc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_x11.c\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glutbitmap.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glutint.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glutstroke.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\glutwin32.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\stroke.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_glx.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\..\..\..\src\glut\glx\win32_x11.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# End Target\r
-# End Project\r
+++ /dev/null
-Microsoft Developer Studio Workspace File, Format Version 6.00\r
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r
-\r
-###############################################################################\r
-\r
-Project: "gears"=.\demos\gears.dsp - Package Owner=<4>\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<4>\r
-{{{\r
-}}}\r
-\r
-###############################################################################\r
-\r
-Project: "glut"=.\glut\glut.dsp - Package Owner=<4>\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<4>\r
-{{{\r
-}}}\r
-\r
-###############################################################################\r
-\r
-Global:\r
-\r
-Package=<5>\r
-{{{\r
-}}}\r
-\r
-Package=<3>\r
-{{{\r
-}}}\r
-\r
-###############################################################################\r
-\r
+++ /dev/null
-<?xml version="1.0" encoding = "Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="7.00"
- Name="gdi"
- SccProjectName=""
- SccLocalPath="">
- <Platforms>
- <Platform
- Name="Win32"/>
- </Platforms>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory=".\Debug"
- IntermediateDirectory=".\Debug"
- ConfigurationType="2"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="FALSE"
- CharacterSet="2">
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"
- PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;_USRDLL;GDI_EXPORTS;_DLL;BUILD_GL32;MESA_MINWARN"
- BasicRuntimeChecks="3"
- RuntimeLibrary="1"
- PrecompiledHeaderFile=".\Debug/gdi.pch"
- AssemblerListingLocation=".\Debug/"
- ObjectFile=".\Debug/"
- ProgramDataBaseFileName=".\Debug/"
- BrowseInformation="1"
- WarningLevel="3"
- SuppressStartupBanner="TRUE"
- DebugInformationFormat="3"
- CompileAs="0"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="mesa.lib winmm.lib msvcrtd.lib odbc32.lib odbccp32.lib"
- OutputFile="Debug/OPENGL32.DLL"
- LinkIncremental="1"
- SuppressStartupBanner="TRUE"
- AdditionalLibraryDirectories="../mesa/Debug"
- IgnoreAllDefaultLibraries="TRUE"
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def"
- GenerateDebugInformation="TRUE"
- ProgramDatabaseFile=".\Debug/OPENGL32.pdb"
- ImportLibrary=".\Debug/OPENGL32.lib"/>
- <Tool
- Name="VCMIDLTool"
- PreprocessorDefinitions="_DEBUG"
- MkTypLibCompatible="TRUE"
- SuppressStartupBanner="TRUE"
- TargetEnvironment="1"
- TypeLibraryName=".\Debug/gdi.tlb"/>
- <Tool
- Name="VCPostBuildEventTool"
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
-copy Debug\OPENGL32.LIB ..\..\..\..\lib
-copy Debug\OPENGL32.DLL ..\..\..\..\lib
-if exist ..\..\..\..\progs\demos copy Debug\OPENGL32.DLL ..\..\..\..\progs\demos
-"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="_DEBUG"
- Culture="1033"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory=".\Release"
- IntermediateDirectory=".\Release"
- ConfigurationType="2"
- UseOfMFC="0"
- ATLMinimizesCRunTimeLibraryUsage="FALSE"
- CharacterSet="2">
- <Tool
- Name="VCCLCompilerTool"
- InlineFunctionExpansion="1"
- AdditionalIncludeDirectories="../../main,../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"
- PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;_USRDLL;GDI_EXPORTS;_DLL;BUILD_GL32;MESA_MINWARN"
- StringPooling="TRUE"
- RuntimeLibrary="0"
- EnableFunctionLevelLinking="TRUE"
- PrecompiledHeaderFile=".\Release/gdi.pch"
- AssemblerListingLocation=".\Release/"
- ObjectFile=".\Release/"
- ProgramDataBaseFileName=".\Release/"
- WarningLevel="3"
- SuppressStartupBanner="TRUE"
- CompileAs="0"/>
- <Tool
- Name="VCCustomBuildTool"/>
- <Tool
- Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
- AdditionalDependencies="mesa.lib winmm.lib msvcrt.lib odbc32.lib odbccp32.lib"
- OutputFile="Release/OPENGL32.DLL"
- LinkIncremental="1"
- SuppressStartupBanner="TRUE"
- AdditionalLibraryDirectories="../mesa/Release"
- IgnoreAllDefaultLibraries="TRUE"
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def"
- ProgramDatabaseFile=".\Release/OPENGL32.pdb"
- ImportLibrary=".\Release/OPENGL32.lib"/>
- <Tool
- Name="VCMIDLTool"
- PreprocessorDefinitions="NDEBUG"
- MkTypLibCompatible="TRUE"
- SuppressStartupBanner="TRUE"
- TargetEnvironment="1"
- TypeLibraryName=".\Release/gdi.tlb"/>
- <Tool
- Name="VCPostBuildEventTool"
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
-copy Release\OPENGL32.LIB ..\..\..\..\lib
-copy Release\OPENGL32.DLL ..\..\..\..\lib
-if exist ..\..\..\..\progs\demos copy Release\OPENGL32.DLL ..\..\..\..\progs\demos
-"/>
- <Tool
- Name="VCPreBuildEventTool"/>
- <Tool
- Name="VCPreLinkEventTool"/>
- <Tool
- Name="VCResourceCompilerTool"
- PreprocessorDefinitions="NDEBUG"
- Culture="1033"/>
- <Tool
- Name="VCWebServiceProxyGeneratorTool"/>
- <Tool
- Name="VCWebDeploymentTool"/>
- </Configuration>
- </Configurations>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\common\driverfuncs.c">
- </File>
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def">
- </File>
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\wgl.c">
- </File>
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\wmesa.c">
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl">
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\colors.h">
- </File>
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\common\driverfuncs.h">
- </File>
- <File
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\wmesadef.h">
- </File>
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
+++ /dev/null
-<?xml version="1.0" encoding = "Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="7.00"\r
- Name="glu"\r
- SccProjectName=""\r
- SccLocalPath="">\r
- <Platforms>\r
- <Platform\r
- Name="Win32"/>\r
- </Platforms>\r
- <Configurations>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include;../../../../src/glu/sgi/include;../../../../src/glu/sgi/libnurbs/interface;../../../../src/glu/sgi/libnurbs/internals;../../../../src/glu/sgi/libnurbs/nurbtess"\r
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;GLU_EXPORTS;BUILD_GL32;LIBRARYBUILD"\r
- StringPooling="TRUE"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="TRUE"\r
- PrecompiledHeaderFile=".\Release/glu.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="msvcrt.lib winmm.lib odbc32.lib odbccp32.lib opengl32.lib"\r
- OutputFile="Release/GLU32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../gdi/Release"\r
- IgnoreAllDefaultLibraries="TRUE"\r
- ModuleDefinitionFile="..\..\..\..\src\glu\sgi\glu.def"\r
- ProgramDatabaseFile=".\Release/GLU32.pdb"\r
- ImportLibrary=".\Release/GLU32.lib"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="TRUE"\r
- SuppressStartupBanner="TRUE"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/glu.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib\r
-copy Release\GLU32.LIB ..\..\..\..\lib\r
-copy Release\GLU32.DLL ..\..\..\..\lib\r
-if exist ..\..\..\..\progs\demos copy Release\GLU32.DLL ..\..\..\..\progs\demos\r
-"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include;../../../../src/glu/sgi/include;../../../../src/glu/sgi/libnurbs/interface;../../../../src/glu/sgi/libnurbs/internals;../../../../src/glu/sgi/libnurbs/nurbtess"\r
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;GLU_EXPORTS;BUILD_GL32;LIBRARYBUILD"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/glu.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- DebugInformationFormat="3"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="msvcrtd.lib winmm.lib odbc32.lib odbccp32.lib opengl32.lib"\r
- OutputFile="Debug/GLU32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../gdi/Debug"\r
- IgnoreAllDefaultLibraries="TRUE"\r
- ModuleDefinitionFile="..\..\..\..\src\glu\sgi\glu.def"\r
- GenerateDebugInformation="TRUE"\r
- ProgramDatabaseFile=".\Debug/GLU32.pdb"\r
- ImportLibrary=".\Debug/GLU32.lib"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="TRUE"\r
- SuppressStartupBanner="TRUE"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/glu.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib\r
-copy Debug\GLU32.LIB ..\..\..\..\lib\r
-copy Debug\GLU32.DLL ..\..\..\..\lib\r
-if exist ..\..\..\..\progs\demos copy Debug\GLU32.DLL ..\..\..\..\progs\demos\r
-"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- </Configurations>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\dict.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\error.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\geom.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\glu.def">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\glue.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\memalloc.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\mesh.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\mipmap.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\normal.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq-heap.c">\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="TRUE">\r
- <Tool\r
- Name="VCCLCompilerTool"/>\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="TRUE">\r
- <Tool\r
- Name="VCCLCompilerTool"/>\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\project.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\quad.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\registry.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\render.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\sweep.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tess.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tessmono.c">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl">\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arc.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arcsorter.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arctess.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\backend.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basiccrveval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basicsurfeval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierEval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatch.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatchMesh.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bezierarc.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bin.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bufpool.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\cachingeval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\coveandtiler.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curve.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curvelist.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\dataTransform.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\defines.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\definitions.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\dict-list.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\dict.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\directedLine.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\displaylist.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\displaymode.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flist.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flistsorter.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\geom.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glcurveval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\glimports.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glimports.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glrenderer.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glsurfeval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\gluint.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\include\gluos.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\gridWrap.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\gridline.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\gridtrimvertex.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\gridvertex.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\hull.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\jarcloc.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\knotvector.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mapdesc.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\maplist.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\memalloc.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\mesh.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mesher.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoChain.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoPolyPart.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoTriangulation.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\monotonizer.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\myassert.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mymath.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mysetjmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\mystdio.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\mystdio.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\mystdlib.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\mystdlib.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mystring.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\normal.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbsconsts.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbstess.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionX.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionY.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patch.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patchlist.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyDBG.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyUtil.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\primitiveStream.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq-heap.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq-sort.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\pwlarc.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\quicksort.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\quilt.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\reader.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\rectBlock.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\render.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\renderhints.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleComp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompBot.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompRight.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompTop.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleMonoPoly.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampledLine.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\searchTree.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\simplemath.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\slicer.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\sorter.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\subdivider.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\sweep.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tess.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tessmono.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimline.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimregion.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertex.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertpool.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\types.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\uarray.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\varray.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\zlassert.h">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="C++ files"\r
- Filter=".cc">\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\README">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arc.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arcsorter.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arctess.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\backend.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basiccrveval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basicsurfeval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierEval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatch.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatchMesh.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bin.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bufpool.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\cachingeval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\ccw.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\coveandtiler.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curve.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curvelist.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curvesub.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\dataTransform.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\directedLine.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\displaylist.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flist.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flistsorter.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glcurveval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glinterface.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glrenderer.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glsurfeval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\gridWrap.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\hull.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\incurveeval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\insurfeval.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\intersect.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\knotvector.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mapdesc.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mapdescv.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\maplist.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mesher.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoChain.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoPolyPart.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoTriangulation.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\monoTriangulationBackend.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\monotonizer.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mycode.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbsinterfac.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbstess.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionX.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionY.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patch.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patchlist.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyDBG.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyUtil.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\primitiveStream.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\quicksort.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\quilt.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\reader.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\rectBlock.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\renderhints.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleComp.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompBot.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompRight.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompTop.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleMonoPoly.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampledLine.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\searchTree.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\slicer.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\sorter.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\splitarcs.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\subdivider.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\tobezier.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimline.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimregion.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertpool.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\uarray.cc">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\varray.cc">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">\r
- </Filter>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\alg-outline">\r
- </File>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-Microsoft Visual Studio Solution File, Format Version 7.00\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdi", "gdi\gdi.vcproj", "{A1B24907-E196-4826-B6AF-26723629B633}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glu", "glu\glu.vcproj", "{2E50FDAF-430B-475B-AE6B-60B68F2875BA}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mesa", "mesa\mesa.vcproj", "{2120C974-2717-4709-B44F-D6E6D0A56448}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "osmesa", "osmesa\osmesa.vcproj", "{8D6CD423-383B-49E7-81BC-D20C70B07DF5}"\r
-EndProject\r
-Global\r
- GlobalSection(SolutionConfiguration) = preSolution\r
- ConfigName.0 = Debug\r
- ConfigName.1 = Release\r
- EndGlobalSection\r
- GlobalSection(ProjectDependencies) = postSolution\r
- {A1B24907-E196-4826-B6AF-26723629B633}.0 = {2120C974-2717-4709-B44F-D6E6D0A56448}\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.0 = {A1B24907-E196-4826-B6AF-26723629B633}\r
- EndGlobalSection\r
- GlobalSection(ProjectConfiguration) = postSolution\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Debug.ActiveCfg = Debug|Win32\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Debug.Build.0 = Debug|Win32\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Release.ActiveCfg = Release|Win32\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Release.Build.0 = Release|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Debug.ActiveCfg = Debug|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Debug.Build.0 = Debug|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Release.ActiveCfg = Release|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Release.Build.0 = Release|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Debug.ActiveCfg = Debug|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Debug.Build.0 = Debug|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Release.ActiveCfg = Release|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Release.Build.0 = Release|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Debug.ActiveCfg = Debug|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Debug.Build.0 = Debug|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Release.ActiveCfg = Release|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Release.Build.0 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(ExtensibilityGlobals) = postSolution\r
- EndGlobalSection\r
- GlobalSection(ExtensibilityAddIns) = postSolution\r
- EndGlobalSection\r
-EndGlobal\r
+++ /dev/null
-<?xml version="1.0" encoding = "Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="7.00"\r
- Name="mesa"\r
- SccProjectName=""\r
- SccLocalPath="">\r
- <Platforms>\r
- <Platform\r
- Name="Win32"/>\r
- </Platforms>\r
- <Configurations>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="4"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalOptions="/Zm1000 "\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/glapi,../../../../src/mesa/main,../../../../src/mesa/shader,../../../../src/mesa/shader/slang,../../../../src/mesa/shader/grammar"\r
- PreprocessorDefinitions="NDEBUG,WIN32,_LIB,_DLL,BUILD_GL32,MESA_MINWARN"\r
- StringPooling="TRUE"\r
- RuntimeLibrary="4"\r
- EnableFunctionLevelLinking="TRUE"\r
- UsePrecompiledHeader="2"\r
- PrecompiledHeaderFile=".\Release/mesa.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLibrarianTool"\r
- OutputFile=".\Release\mesa.lib"\r
- SuppressStartupBanner="TRUE"/>\r
- <Tool\r
- Name="VCMIDLTool"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- </Configuration>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="4"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalOptions="/Zm1000 "\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/glapi,../../../../src/mesa/main,../../../../src/mesa/shader,../../../../src/mesa/shader/slang,../../../../src/mesa/shader/grammar"\r
- PreprocessorDefinitions="_DEBUG,WIN32,_LIB,_DLL,BUILD_GL32,MESA_MINWARN"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="5"\r
- PrecompiledHeaderFile=".\Debug/mesa.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- BrowseInformation="1"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- DebugInformationFormat="3"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLibrarianTool"\r
- OutputFile=".\Debug\mesa.lib"\r
- SuppressStartupBanner="TRUE"/>\r
- <Tool\r
- Name="VCMIDLTool"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- </Configuration>\r
- </Configurations>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\array_cache\ac_context.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\array_cache\ac_import.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\accum.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_arrayelt.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_loopback.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_noop.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_validate.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\arrayobj.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogparse.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogram.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\atifragshader.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\attrib.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\blend.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\bufferobj.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\buffers.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\clip.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\colortab.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\context.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\convolve.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\debug.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depth.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depthstencil.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dispatch.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dlist.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\drawpix.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enable.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enums.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\eval.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\execmem.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\extensions.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fbobject.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\feedback.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fog.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\framebuffer.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\get.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\getstring.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapi.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glthread.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar.c">\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="TRUE">\r
- <Tool\r
- Name="VCCLCompilerTool"/>\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="TRUE">\r
- <Tool\r
- Name="VCCLCompilerTool"/>\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_mesa.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hash.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hint.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\histogram.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\image.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\imports.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\light.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\lines.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_clip.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_norm.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_xform.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_eval.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_matrix.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_translate.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_vector.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_xform.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\matrix.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mipmap.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mm.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvfragparse.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvprogram.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertexec.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertparse.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\occlude.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\pixel.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\points.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\polygon.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\program.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rastpos.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rbadaptors.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\renderbuffer.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aaline.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aatriangle.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_accum.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_alpha.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_arbshader.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_atifragshader.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_bitmap.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_blend.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_blit.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_buffers.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_context.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_copypix.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_depth.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_drawpix.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_feedback.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_fog.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_imaging.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_lines.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_logic.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_masking.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_nvfragprog.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_points.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_readpix.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_span.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_stencil.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texcombine.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texfilter.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texstore.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_triangle.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_zoom.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\shaderobjects.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\shaderobjects_3dlabs.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_analyse.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_assignment.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_conditional.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_constructor.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_typeinfo.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_function.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_operation.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_struct.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_variable.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_execute.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_execute_x86.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_export.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_library_noise.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_library_texsample.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_link.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_preprocess.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_storage.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_utility.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_context.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_triangle.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\state.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\stencil.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_array_api.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_array_import.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_context.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_pipeline.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_cull.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_fog.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_light.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_normals.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_points.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_program.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_render.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_texgen.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_texmat.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_vertex.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vertex.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vertex_generic.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vp_build.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vtx_api.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vtx_eval.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vtx_exec.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vtx_generic.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress_fxt1.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress_s3tc.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texenvprogram.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texformat.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\teximage.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texobj.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texrender.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstate.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstore.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\varray.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vsnprintf.c">\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="TRUE">\r
- <Tool\r
- Name="VCCLCompilerTool"/>\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="TRUE">\r
- <Tool\r
- Name="VCCLCompilerTool"/>\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vtxfmt.c">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl">\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\array_cache\ac_context.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\array_cache\acache.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\accum.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_arrayelt.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_eval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_loopback.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_noop.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_validate.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogparse.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogram.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogram_syn.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\atifragshader.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\attrib.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\blend.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\bufferobj.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\buffers.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\clip.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\colormac.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\colortab.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\config.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\context.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\convolve.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dd.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\debug.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depth.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depthstencil.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dlist.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\drawpix.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enable.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enums.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\eval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\extensions.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fbobject.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\feedback.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fog.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\framebuffer.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\get.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapi.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapioffsets.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapitable.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapitemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\glheader.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glprocs.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glthread.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_mesa.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_syn.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hash.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hint.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\histogram.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\image.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\imports.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\light.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\lines.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_clip_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_copy_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_util.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_dotprod_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_eval.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_matrix.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_norm_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_trans_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_translate.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_vector.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_xform.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_xform_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\macros.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\mathmod.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\matrix.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mm.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mtypes.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvfragparse.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvfragprog.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvprogram.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertexec.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertparse.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertprog.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\occlude.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\pixel.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\points.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\polygon.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\program.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rastpos.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rbadaptors.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\renderbuffer.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aaline.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aalinetemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aatriangle.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aatritemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_accum.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_alpha.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_atifragshader.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_blend.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_context.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_depth.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_drawpix.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_feedback.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_fog.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_lines.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_linetemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_logic.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_masking.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_nvfragprog.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_points.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_pointtemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_span.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_spantemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_stencil.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texcombine.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texfilter.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_triangle.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_trispan.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_tritemp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_zoom.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\shaderobjects.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\shaderobjects_3dlabs.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\simple_list.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_assignment.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_conditional.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_constructor.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_assemble_typeinfo.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_execute.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_mesa.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_preprocess.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_storage.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_utility.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_context.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_triangle.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_tritmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_vb.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\state.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\stencil.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\swrast.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\swrast_setup.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_array_api.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_array_import.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_context.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_pipeline.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_save_api.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_arbprogram.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_cliptmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_lighttmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_rendertmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vertex.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vp_build.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vtx_api.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texenvprogram.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texformat.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texformat_tmp.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\teximage.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texobj.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texrender.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstate.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstore.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\tnl.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\traverse_wrap.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\varray.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\version.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vtxfmt.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vtxfmt_tmp.h">\r
- </File>\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding = "Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="7.00"\r
- Name="osmesa"\r
- SccProjectName=""\r
- SccLocalPath="">\r
- <Platforms>\r
- <Platform\r
- Name="Win32"/>\r
- </Platforms>\r
- <Configurations>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"\r
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;OSMESA_EXPORTS"\r
- StringPooling="TRUE"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="TRUE"\r
- PrecompiledHeaderFile=".\Release/osmesa.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="opengl32.lib winmm.lib msvcrt.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Release/OSMESA32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../gdi/Release"\r
- IgnoreAllDefaultLibraries="TRUE"\r
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\osmesa\osmesa.def"\r
- ProgramDatabaseFile=".\Release/OSMESA32.pdb"\r
- ImportLibrary=".\Release/OSMESA32.lib"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="TRUE"\r
- SuppressStartupBanner="TRUE"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/osmesa.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib\r
-copy Release\OSMESA32.LIB ..\..\..\..\lib\r
-copy Release\OSMESA32.DLL ..\..\..\..\lib\r
-if exist ..\..\..\..\progs\demos copy Release\OSMESA32.DLL ..\..\..\..\progs\demos\r
-"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"\r
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;OSMESA_EXPORTS"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/osmesa.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- DebugInformationFormat="3"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="opengl32.lib winmm.lib msvcrtd.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Debug/OSMESA32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../gdi/Debug"\r
- IgnoreAllDefaultLibraries="TRUE"\r
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\osmesa\osmesa.def"\r
- GenerateDebugInformation="TRUE"\r
- ProgramDatabaseFile=".\Debug/OSMESA32.pdb"\r
- ImportLibrary=".\Debug/OSMESA32.lib"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="TRUE"\r
- SuppressStartupBanner="TRUE"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/osmesa.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib\r
-copy Debug\OSMESA32.LIB ..\..\..\..\lib\r
-copy Debug\OSMESA32.DLL ..\..\..\..\lib\r
-if exist ..\..\..\..\progs\demos copy Debug\OSMESA32.DLL ..\..\..\..\progs\demos\r
-"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- </Configurations>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\common\driverfuncs.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\osmesa\osmesa.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\osmesa\osmesa.def">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl">\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding = "Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="7.00"\r
- Name="gears"\r
- SccProjectName=""\r
- SccLocalPath="">\r
- <Platforms>\r
- <Platform\r
- Name="Win32"/>\r
- </Platforms>\r
- <Configurations>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="1"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="5"\r
- PrecompiledHeaderFile=".\Debug/gears.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- DebugInformationFormat="3"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="glut32.lib odbc32.lib odbccp32.lib"\r
- OutputFile=".\Debug/gears.exe"\r
- LinkIncremental="2"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../glut/Debug"\r
- GenerateDebugInformation="TRUE"\r
- ProgramDatabaseFile=".\Debug/gears.pdb"\r
- SubSystem="1"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- TypeLibraryName=".\Debug/gears.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="copy Debug\gears.exe ..\..\..\..\progs\demos"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="1"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"\r
- StringPooling="TRUE"\r
- RuntimeLibrary="4"\r
- EnableFunctionLevelLinking="TRUE"\r
- PrecompiledHeaderFile=".\Release/gears.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="glut32.lib odbc32.lib odbccp32.lib"\r
- OutputFile=".\Release/gears.exe"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../glut/Release"\r
- ProgramDatabaseFile=".\Release/gears.pdb"\r
- SubSystem="1"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- TypeLibraryName=".\Release/gears.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="copy Release\gears.exe ..\..\..\..\progs\demos"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- </Configurations>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">\r
- <File\r
- RelativePath="..\..\..\..\progs\demos\gears.c">\r
- <FileConfiguration\r
- Name="Debug|Win32">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalIncludeDirectories=""/>\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Release|Win32">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalIncludeDirectories=""/>\r
- </FileConfiguration>\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl">\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding = "Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="7.00"\r
- Name="glut"\r
- SccProjectName=""\r
- SccLocalPath="">\r
- <Platforms>\r
- <Platform\r
- Name="Win32"/>\r
- </Platforms>\r
- <Configurations>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;_DLL;_USRDLL;GLUT_EXPORTS;MESA;BUILD_GL32"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/glut.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- DebugInformationFormat="3"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="winmm.lib msvcrtd.lib oldnames.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib"\r
- OutputFile="Debug/GLUT32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../../mesa/Debug"\r
- IgnoreAllDefaultLibraries="TRUE"\r
- GenerateDebugInformation="TRUE"\r
- ProgramDatabaseFile=".\Debug/GLUT32.pdb"\r
- ImportLibrary=".\Debug/GLUT32.lib"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="TRUE"\r
- SuppressStartupBanner="TRUE"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/glut.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib\r
-copy Debug\GLUT32.LIB ..\..\..\..\lib\r
-copy Debug\GLUT32.DLL ..\..\..\..\lib\r
-if exist ..\..\..\..\progs\demos copy Debug\GLUT32.DLL ..\..\..\..\progs\demos\r
-"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="FALSE"\r
- CharacterSet="2">\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;_DLL;_USRDLL;GLUT_EXPORTS;MESA;BUILD_GL32"\r
- StringPooling="TRUE"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="TRUE"\r
- PrecompiledHeaderFile=".\Release/glut.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="TRUE"\r
- CompileAs="0"/>\r
- <Tool\r
- Name="VCCustomBuildTool"/>\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="opengl32.lib glu32.lib winmm.lib msvcrt.lib oldnames.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Release/GLUT32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="TRUE"\r
- AdditionalLibraryDirectories="../../mesa/Release"\r
- IgnoreAllDefaultLibraries="TRUE"\r
- ProgramDatabaseFile=".\Release/GLUT32.pdb"\r
- ImportLibrary=".\Release/GLUT32.lib"/>\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="TRUE"\r
- SuppressStartupBanner="TRUE"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/glut.tlb"/>\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib\r
-copy Release\GLUT32.LIB ..\..\..\..\lib\r
-copy Release\GLUT32.DLL ..\..\..\..\lib\r
-if exist ..\..\..\..\progs\demos copy Release\GLUT32.DLL ..\..\..\..\progs\demos\r
-"/>\r
- <Tool\r
- Name="VCPreBuildEventTool"/>\r
- <Tool\r
- Name="VCPreLinkEventTool"/>\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"/>\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"/>\r
- <Tool\r
- Name="VCWebDeploymentTool"/>\r
- </Configuration>\r
- </Configurations>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_8x13.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_9x15.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_bitmap.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_bwidth.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_cindex.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_cmap.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_cursor.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_dials.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_dstr.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_event.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_ext.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_fbc.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_fullscrn.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_gamemode.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_get.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_hel10.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_hel12.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_hel18.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_init.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_input.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_joy.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_key.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_keyctrl.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_keyup.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_mesa.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_modifier.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_mroman.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_overlay.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_roman.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_shapes.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_space.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_stroke.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_swap.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_swidth.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_tablet.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_teapot.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_tr10.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_tr24.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_util.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_vidresize.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_warp.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_win.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_winmisc.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_glx.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_menu.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_util.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_winproc.c">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_x11.c">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl">\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutbitmap.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutint.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutstroke.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutwin32.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\stroke.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_glx.h">\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_x11.h">\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-Microsoft Visual Studio Solution File, Format Version 7.00\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gears", "demos\gears.vcproj", "{3A7B0671-10F8-45D1-B012-F6D650F817CE}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glut", "glut\glut.vcproj", "{0234F0D2-C8A6-4C4D-93E7-0E2248049C67}"\r
-EndProject\r
-Global\r
- GlobalSection(SolutionConfiguration) = preSolution\r
- ConfigName.0 = Debug\r
- ConfigName.1 = Release\r
- EndGlobalSection\r
- GlobalSection(ProjectDependencies) = postSolution\r
- EndGlobalSection\r
- GlobalSection(ProjectConfiguration) = postSolution\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Debug.ActiveCfg = Debug|Win32\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Debug.Build.0 = Debug|Win32\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Release.ActiveCfg = Release|Win32\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Release.Build.0 = Release|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Debug.ActiveCfg = Debug|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Debug.Build.0 = Debug|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Release.ActiveCfg = Release|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Release.Build.0 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(ExtensibilityGlobals) = postSolution\r
- EndGlobalSection\r
- GlobalSection(ExtensibilityAddIns) = postSolution\r
- EndGlobalSection\r
-EndGlobal\r
+++ /dev/null
-<?xml version="1.0" encoding="Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="8.00"\r
- Name="gdi"\r
- ProjectGUID="{A1B24907-E196-4826-B6AF-26723629B633}"\r
- >\r
- <Platforms>\r
- <Platform\r
- Name="Win32"\r
- />\r
- </Platforms>\r
- <ToolFiles>\r
- </ToolFiles>\r
- <Configurations>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/gdi.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"\r
- PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;_USRDLL;GDI_EXPORTS;_DLL;BUILD_GL32;MESA_MINWARN"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/gdi.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- BrowseInformation="1"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- DebugInformationFormat="3"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="mesa.lib msvcrtd.lib gdi32.lib user32.lib winmm.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Debug/OPENGL32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../mesa/Debug"\r
- IgnoreAllDefaultLibraries="true"\r
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def"\r
- GenerateDebugInformation="true"\r
- ProgramDatabaseFile=".\Debug/OPENGL32.pdb"\r
- ImportLibrary=".\Debug/OPENGL32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Debug\OPENGL32.LIB ..\..\..\..\lib
copy Debug\OPENGL32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Debug\OPENGL32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/gdi.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../main,../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"\r
- PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;_USRDLL;GDI_EXPORTS;_DLL;BUILD_GL32;MESA_MINWARN"\r
- StringPooling="true"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="true"\r
- PrecompiledHeaderFile=".\Release/gdi.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="mesa.lib winmm.lib gdi32.lib user32.lib msvcrt.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Release/OPENGL32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../mesa/Release"\r
- IgnoreAllDefaultLibraries="true"\r
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def"\r
- ProgramDatabaseFile=".\Release/OPENGL32.pdb"\r
- ImportLibrary=".\Release/OPENGL32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Release\OPENGL32.LIB ..\..\..\..\lib
copy Release\OPENGL32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Release\OPENGL32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- </Configurations>\r
- <References>\r
- </References>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\common\driverfuncs.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\mesa.def"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\wgl.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\wmesa.c"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\colors.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\common\driverfuncs.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\windows\gdi\wmesadef.h"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
- >\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding="Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="8.00"\r
- Name="glu"\r
- ProjectGUID="{2E50FDAF-430B-475B-AE6B-60B68F2875BA}"\r
- >\r
- <Platforms>\r
- <Platform\r
- Name="Win32"\r
- />\r
- </Platforms>\r
- <ToolFiles>\r
- </ToolFiles>\r
- <Configurations>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/glu.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include;../../../../src/glu/sgi/include;../../../../src/glu/sgi/libnurbs/interface;../../../../src/glu/sgi/libnurbs/internals;../../../../src/glu/sgi/libnurbs/nurbtess"\r
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;GLU_EXPORTS;BUILD_GL32;LIBRARYBUILD"\r
- StringPooling="true"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="true"\r
- PrecompiledHeaderFile=".\Release/glu.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="msvcrt.lib winmm.lib odbc32.lib odbccp32.lib opengl32.lib"\r
- OutputFile="Release/GLU32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../gdi/Release"\r
- IgnoreAllDefaultLibraries="true"\r
- ModuleDefinitionFile="..\..\..\..\src\glu\sgi\glu.def"\r
- ProgramDatabaseFile=".\Release/GLU32.pdb"\r
- ImportLibrary=".\Release/GLU32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Release\GLU32.LIB ..\..\..\..\lib
copy Release\GLU32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Release\GLU32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/glu.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include;../../../../src/glu/sgi/include;../../../../src/glu/sgi/libnurbs/interface;../../../../src/glu/sgi/libnurbs/internals;../../../../src/glu/sgi/libnurbs/nurbtess"\r
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;GLU_EXPORTS;BUILD_GL32;LIBRARYBUILD"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/glu.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- DebugInformationFormat="3"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="msvcrtd.lib winmm.lib odbc32.lib odbccp32.lib opengl32.lib"\r
- OutputFile="Debug/GLU32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../gdi/Debug"\r
- IgnoreAllDefaultLibraries="true"\r
- ModuleDefinitionFile="..\..\..\..\src\glu\sgi\glu.def"\r
- GenerateDebugInformation="true"\r
- ProgramDatabaseFile=".\Debug/GLU32.pdb"\r
- ImportLibrary=".\Debug/GLU32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Debug\GLU32.LIB ..\..\..\..\lib
copy Debug\GLU32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Debug\GLU32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- </Configurations>\r
- <References>\r
- </References>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\dict.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\error.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\geom.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\glu.def"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\glue.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\memalloc.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\mesh.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\mipmap.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\normal.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq-heap.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\project.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\quad.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\registry.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\render.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\sweep.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tess.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tessmono.c"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arc.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arcsorter.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arctess.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\backend.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basiccrveval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basicsurfeval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bezierarc.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierEval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatch.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatchMesh.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bin.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bufpool.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\cachingeval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\coveandtiler.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curve.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curvelist.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\dataTransform.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\defines.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\definitions.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\dict-list.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\dict.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\directedLine.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\displaylist.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\displaymode.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flist.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flistsorter.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\geom.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glcurveval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\glimports.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glimports.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glrenderer.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glsurfeval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libutil\gluint.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\include\gluos.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\gridline.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\gridtrimvertex.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\gridvertex.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\gridWrap.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\hull.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\jarcloc.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\knotvector.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mapdesc.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\maplist.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\memalloc.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\mesh.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mesher.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoChain.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoPolyPart.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\monotonizer.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoTriangulation.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\myassert.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mymath.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mysetjmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\mystdio.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\mystdio.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\mystdlib.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\mystdlib.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mystring.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\normal.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbsconsts.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbstess.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionX.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionY.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patch.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patchlist.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyDBG.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyUtil.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\primitiveStream.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq-heap.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq-sort.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\priorityq.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\pwlarc.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\quicksort.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\quilt.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\reader.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\rectBlock.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\render.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\renderhints.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleComp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompBot.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompRight.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompTop.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampledLine.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleMonoPoly.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\searchTree.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\simplemath.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\slicer.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\sorter.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\subdivider.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\sweep.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tess.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\tessmono.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimline.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimregion.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertex.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertpool.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\types.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\uarray.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\varray.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\zlassert.h"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="C++ files"\r
- Filter=".cc"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arc.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arcsorter.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\arctess.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\backend.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basiccrveval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\basicsurfeval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierEval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatch.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\bezierPatchMesh.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bin.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\bufpool.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\cachingeval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\ccw.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\coveandtiler.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curve.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curvelist.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\curvesub.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\dataTransform.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\directedLine.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\displaylist.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flist.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\flistsorter.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glcurveval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glinterface.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glrenderer.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\glsurfeval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\gridWrap.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\hull.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\incurveeval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\interface\insurfeval.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\intersect.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\knotvector.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mapdesc.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mapdescv.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\maplist.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mesher.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoChain.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoPolyPart.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\monotonizer.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\monoTriangulation.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\monoTriangulationBackend.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\mycode.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbsinterfac.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\nurbstess.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionX.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\partitionY.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patch.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\patchlist.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyDBG.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\polyUtil.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\primitiveStream.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\quicksort.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\quilt.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\reader.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\README"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\rectBlock.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\renderhints.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleComp.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompBot.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompRight.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleCompTop.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampledLine.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\sampleMonoPoly.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\nurbtess\searchTree.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\slicer.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\sorter.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\splitarcs.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\subdivider.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\tobezier.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimline.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimregion.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\trimvertpool.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\uarray.cc"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libnurbs\internals\varray.cc"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
- >\r
- </Filter>\r
- <File\r
- RelativePath="..\..\..\..\src\glu\sgi\libtess\alg-outline"\r
- >\r
- </File>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-Microsoft Visual Studio Solution File, Format Version 9.00\r
-# Visual C++ Express 2005\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gdi", "gdi\gdi.vcproj", "{A1B24907-E196-4826-B6AF-26723629B633}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {2120C974-2717-4709-B44F-D6E6D0A56448} = {2120C974-2717-4709-B44F-D6E6D0A56448}\r
- EndProjectSection\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glu", "glu\glu.vcproj", "{2E50FDAF-430B-475B-AE6B-60B68F2875BA}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mesa", "mesa\mesa.vcproj", "{2120C974-2717-4709-B44F-D6E6D0A56448}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "osmesa", "osmesa\osmesa.vcproj", "{8D6CD423-383B-49E7-81BC-D20C70B07DF5}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {A1B24907-E196-4826-B6AF-26723629B633} = {A1B24907-E196-4826-B6AF-26723629B633}\r
- EndProjectSection\r
-EndProject\r
-Global\r
- GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
- Debug|Win32 = Debug|Win32\r
- Release|Win32 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Debug|Win32.Build.0 = Debug|Win32\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Release|Win32.ActiveCfg = Release|Win32\r
- {A1B24907-E196-4826-B6AF-26723629B633}.Release|Win32.Build.0 = Release|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Debug|Win32.Build.0 = Debug|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Release|Win32.ActiveCfg = Release|Win32\r
- {2E50FDAF-430B-475B-AE6B-60B68F2875BA}.Release|Win32.Build.0 = Release|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Debug|Win32.Build.0 = Debug|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Release|Win32.ActiveCfg = Release|Win32\r
- {2120C974-2717-4709-B44F-D6E6D0A56448}.Release|Win32.Build.0 = Release|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Debug|Win32.Build.0 = Debug|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Release|Win32.ActiveCfg = Release|Win32\r
- {8D6CD423-383B-49E7-81BC-D20C70B07DF5}.Release|Win32.Build.0 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(SolutionProperties) = preSolution\r
- HideSolutionNode = FALSE\r
- EndGlobalSection\r
-EndGlobal\r
+++ /dev/null
-<?xml version="1.0" encoding="Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="8.00"\r
- Name="mesa"\r
- ProjectGUID="{2120C974-2717-4709-B44F-D6E6D0A56448}"\r
- >\r
- <Platforms>\r
- <Platform\r
- Name="Win32"\r
- />\r
- </Platforms>\r
- <ToolFiles>\r
- </ToolFiles>\r
- <Configurations>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="4"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalOptions="/Zm1000 "\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/glapi,../../../../src/mesa/main,../../../../src/mesa/shader,../../../../src/mesa/shader/slang,../../../../src/mesa/shader/grammar"\r
- PreprocessorDefinitions="NDEBUG,WIN32,_LIB,_DLL,BUILD_GL32,MESA_MINWARN"\r
- StringPooling="true"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="true"\r
- UsePrecompiledHeader="0"\r
- PrecompiledHeaderFile=".\Release/mesa.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLibrarianTool"\r
- OutputFile=".\Release\mesa.lib"\r
- SuppressStartupBanner="true"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- />\r
- </Configuration>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="4"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalOptions="/Zm1000 "\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/glapi,../../../../src/mesa/main,../../../../src/mesa/shader,../../../../src/mesa/shader/slang,../../../../src/mesa/shader/grammar"\r
- PreprocessorDefinitions="_DEBUG,WIN32,_LIB,_DLL,BUILD_GL32,MESA_MINWARN"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/mesa.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- BrowseInformation="1"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- DebugInformationFormat="3"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLibrarianTool"\r
- OutputFile=".\Debug\mesa.lib"\r
- SuppressStartupBanner="true"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- />\r
- </Configuration>\r
- </Configurations>\r
- <References>\r
- </References>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\accum.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_arrayelt.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_loopback.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_noop.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_validate.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogparse.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogram.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\arrayobj.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\atifragshader.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\attrib.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\blend.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\bufferobj.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\buffers.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\clip.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\colortab.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\context.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\convolve.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\debug.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depth.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depthstencil.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dispatch.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dlist.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\drawpix.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enable.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enums.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\eval.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\execmem.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\extensions.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fbobject.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\feedback.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fog.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\framebuffer.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\get.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\getstring.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapi.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glthread.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_crt.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_mesa.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hash.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hint.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\histogram.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\image.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\imports.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\light.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\lines.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_clip.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_norm.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_xform.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_eval.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_matrix.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_translate.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_vector.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_xform.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\matrix.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mipmap.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mm.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvfragparse.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvprogram.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertparse.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\pixel.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\points.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\polygon.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_debug.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_execute.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_instruction.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_parameter.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_print.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_statevars.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\program.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\programopt.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\queryobj.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rastpos.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rbadaptors.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\renderbuffer.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aaline.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aatriangle.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_accum.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_alpha.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_atifragshader.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_bitmap.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_blend.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_blit.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_buffers.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_context.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_copypix.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_depth.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_drawpix.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_feedback.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_fog.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_fragprog.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_imaging.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_lines.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_logic.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_masking.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_points.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_readpix.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_span.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_stencil.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texcombine.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texfilter.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texstore.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_triangle.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_zoom.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\shader_api.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\shaders.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_builtin.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_codegen.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_function.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_operation.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_struct.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_variable.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_emit.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_ir.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_label.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_library_noise.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_link.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_log.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_mem.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_preprocess.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_print.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_simplify.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_storage.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_typeinfo.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_utility.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_vartable.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_context.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_triangle.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\state.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\stencil.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_context.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_draw.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_pipeline.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_cull.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_fog.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_light.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_normals.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_points.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_program.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_render.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_texgen.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_texmat.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_vertex.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vertex.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vertex_generic.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vp_build.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress_fxt1.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress_s3tc.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texenvprogram.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texformat.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\teximage.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texobj.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texrender.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstate.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstore.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\varray.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_context.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_exec.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_exec_api.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_exec_array.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_exec_draw.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_exec_eval.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_rebase.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_save.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_save_api.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_save_draw.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_save_loopback.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_split.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_split_copy.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_split_inplace.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vsnprintf.c"\r
- >\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- ExcludedFromBuild="true"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- />\r
- </FileConfiguration>\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vtxfmt.c"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\accum.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_arrayelt.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_eval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_loopback.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_noop.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\api_validate.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogparse.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogram.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\arbprogram_syn.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\atifragshader.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\attrib.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\blend.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\bufferobj.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\buffers.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\clip.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\colormac.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\colortab.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\config.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\context.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\convolve.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dd.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\debug.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depth.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\depthstencil.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\dlist.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\drawpix.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enable.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\enums.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\eval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\extensions.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fbobject.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\feedback.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\fog.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\framebuffer.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\get.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapi.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapioffsets.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapitable.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glapitemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\glheader.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glprocs.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\glapi\glthread.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_crt.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_mesa.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\grammar\grammar_syn.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hash.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\hint.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\histogram.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\image.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\imports.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\light.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\lines.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_clip_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_copy_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_debug_util.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_dotprod_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_eval.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_matrix.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_norm_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_trans_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_translate.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_vector.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_xform.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\m_xform_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\macros.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\math\mathmod.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\matrix.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mm.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\mtypes.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvfragparse.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvprogram.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\nvvertparse.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\pixel.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\points.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\polygon.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_debug.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_execute.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_instruction.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_parameter.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_print.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\prog_statevars.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\program.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\programopt.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\queryobj.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rastpos.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\rbadaptors.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\renderbuffer.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aaline.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aalinetemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aatriangle.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_aatritemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_accum.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_alpha.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_atifragshader.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_blend.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_context.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_depth.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_drawpix.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_feedback.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_fog.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_fragprog.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_lines.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_linetemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_logic.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_masking.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_points.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_pointtemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_span.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_spantemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_stencil.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texcombine.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_texfilter.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_triangle.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_trispan.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_tritemp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\s_zoom.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\shader_api.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\shaders.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\simple_list.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_builtin.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_codegen.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_function.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_operation.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_struct.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_compile_variable.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_emit.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_ir.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_label.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_library_noise.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_link.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_log.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_mem.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_preprocess.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_print.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_simplify.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_storage.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_typeinfo.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_utility.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\shader\slang\slang_vartable.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_context.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_triangle.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_tritmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\ss_vb.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\state.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\stencil.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast\swrast.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\swrast_setup\swrast_setup.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_context.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_pipeline.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_cliptmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_lighttmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vb_rendertmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vertex.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\t_vp_build.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texcompress.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texenvprogram.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texformat.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texformat_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\teximage.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texobj.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texrender.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstate.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\texstore.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\tnl\tnl.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\varray.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_attrib.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_attrib_tmp.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_context.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_exec.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_save.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\vbo\vbo_split.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\version.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vtxfmt.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\main\vtxfmt_tmp.h"\r
- >\r
- </File>\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding="Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="8.00"\r
- Name="osmesa"\r
- ProjectGUID="{8D6CD423-383B-49E7-81BC-D20C70B07DF5}"\r
- >\r
- <Platforms>\r
- <Platform\r
- Name="Win32"\r
- />\r
- </Platforms>\r
- <ToolFiles>\r
- </ToolFiles>\r
- <Configurations>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/osmesa.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"\r
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;OSMESA_EXPORTS"\r
- StringPooling="true"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="true"\r
- PrecompiledHeaderFile=".\Release/osmesa.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="opengl32.lib winmm.lib msvcrt.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Release/OSMESA32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../gdi/Release"\r
- IgnoreAllDefaultLibraries="true"\r
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\osmesa\osmesa.def"\r
- ProgramDatabaseFile=".\Release/OSMESA32.pdb"\r
- ImportLibrary=".\Release/OSMESA32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Release\OSMESA32.LIB ..\..\..\..\lib
copy Release\OSMESA32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Release\OSMESA32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/osmesa.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include,../../../../src/mesa,../../../../src/mesa/main,../../../../src/mesa/glapi,../../../../src/mesa/swrast,../../../../src/mesa/shader"\r
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;OSMESA_EXPORTS"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/osmesa.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- DebugInformationFormat="3"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="opengl32.lib winmm.lib msvcrtd.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Debug/OSMESA32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../gdi/Debug"\r
- IgnoreAllDefaultLibraries="true"\r
- ModuleDefinitionFile="..\..\..\..\src\mesa\drivers\osmesa\osmesa.def"\r
- GenerateDebugInformation="true"\r
- ProgramDatabaseFile=".\Debug/OSMESA32.pdb"\r
- ImportLibrary=".\Debug/OSMESA32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Debug\OSMESA32.LIB ..\..\..\..\lib
copy Debug\OSMESA32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Debug\OSMESA32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- </Configurations>\r
- <References>\r
- </References>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\common\driverfuncs.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\osmesa\osmesa.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\mesa\drivers\osmesa\osmesa.def"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl"\r
- >\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
- >\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding="Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="8.00"\r
- Name="gears"\r
- ProjectGUID="{3A7B0671-10F8-45D1-B012-F6D650F817CE}"\r
- >\r
- <Platforms>\r
- <Platform\r
- Name="Win32"\r
- />\r
- </Platforms>\r
- <ToolFiles>\r
- </ToolFiles>\r
- <Configurations>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="1"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- TypeLibraryName=".\Debug/gears.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/gears.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- DebugInformationFormat="3"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="glut32.lib odbc32.lib odbccp32.lib"\r
- OutputFile=".\Debug/gears.exe"\r
- LinkIncremental="2"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../glut/Debug"\r
- GenerateDebugInformation="true"\r
- ProgramDatabaseFile=".\Debug/gears.pdb"\r
- SubSystem="1"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="copy Debug\gears.exe ..\..\..\..\progs\demos"\r
- />\r
- </Configuration>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="1"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- TypeLibraryName=".\Release/gears.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"\r
- StringPooling="true"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="true"\r
- PrecompiledHeaderFile=".\Release/gears.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="glut32.lib odbc32.lib odbccp32.lib"\r
- OutputFile=".\Release/gears.exe"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../glut/Release"\r
- ProgramDatabaseFile=".\Release/gears.pdb"\r
- SubSystem="1"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="copy Release\gears.exe ..\..\..\..\progs\demos"\r
- />\r
- </Configuration>\r
- </Configurations>\r
- <References>\r
- </References>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\progs\demos\gears.c"\r
- >\r
- <FileConfiguration\r
- Name="Debug|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalIncludeDirectories=""\r
- />\r
- </FileConfiguration>\r
- <FileConfiguration\r
- Name="Release|Win32"\r
- >\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- AdditionalIncludeDirectories=""\r
- />\r
- </FileConfiguration>\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl"\r
- >\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
- >\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-<?xml version="1.0" encoding="Windows-1252"?>\r
-<VisualStudioProject\r
- ProjectType="Visual C++"\r
- Version="8.00"\r
- Name="glut"\r
- ProjectGUID="{0234F0D2-C8A6-4C4D-93E7-0E2248049C67}"\r
- >\r
- <Platforms>\r
- <Platform\r
- Name="Win32"\r
- />\r
- </Platforms>\r
- <ToolFiles>\r
- </ToolFiles>\r
- <Configurations>\r
- <Configuration\r
- Name="Debug|Win32"\r
- OutputDirectory=".\Debug"\r
- IntermediateDirectory=".\Debug"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Debug/glut.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- Optimization="0"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS;_DLL;_USRDLL;GLUT_EXPORTS;MESA;BUILD_GL32;_CRT_SECURE_NO_DEPRECATE"\r
- BasicRuntimeChecks="3"\r
- RuntimeLibrary="1"\r
- PrecompiledHeaderFile=".\Debug/glut.pch"\r
- AssemblerListingLocation=".\Debug/"\r
- ObjectFile=".\Debug/"\r
- ProgramDataBaseFileName=".\Debug/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- DebugInformationFormat="3"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="_DEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="winmm.lib msvcrtd.lib gdi32.lib user32.lib oldnames.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib"\r
- OutputFile="Debug/GLUT32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../../mesa/Debug"\r
- IgnoreAllDefaultLibraries="true"\r
- GenerateDebugInformation="true"\r
- ProgramDatabaseFile=".\Debug/GLUT32.pdb"\r
- ImportLibrary=".\Debug/GLUT32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Debug\GLUT32.LIB ..\..\..\..\lib
copy Debug\GLUT32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Debug\GLUT32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- <Configuration\r
- Name="Release|Win32"\r
- OutputDirectory=".\Release"\r
- IntermediateDirectory=".\Release"\r
- ConfigurationType="2"\r
- InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"\r
- UseOfMFC="0"\r
- ATLMinimizesCRunTimeLibraryUsage="false"\r
- CharacterSet="2"\r
- >\r
- <Tool\r
- Name="VCPreBuildEventTool"\r
- />\r
- <Tool\r
- Name="VCCustomBuildTool"\r
- />\r
- <Tool\r
- Name="VCXMLDataGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCWebServiceProxyGeneratorTool"\r
- />\r
- <Tool\r
- Name="VCMIDLTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- MkTypLibCompatible="true"\r
- SuppressStartupBanner="true"\r
- TargetEnvironment="1"\r
- TypeLibraryName=".\Release/glut.tlb"\r
- />\r
- <Tool\r
- Name="VCCLCompilerTool"\r
- InlineFunctionExpansion="1"\r
- AdditionalIncludeDirectories="../../../../include"\r
- PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;_DLL;_USRDLL;GLUT_EXPORTS;MESA;BUILD_GL32;_CRT_SECURE_NO_DEPRECATE"\r
- StringPooling="true"\r
- RuntimeLibrary="0"\r
- EnableFunctionLevelLinking="true"\r
- PrecompiledHeaderFile=".\Release/glut.pch"\r
- AssemblerListingLocation=".\Release/"\r
- ObjectFile=".\Release/"\r
- ProgramDataBaseFileName=".\Release/"\r
- WarningLevel="3"\r
- SuppressStartupBanner="true"\r
- CompileAs="0"\r
- />\r
- <Tool\r
- Name="VCManagedResourceCompilerTool"\r
- />\r
- <Tool\r
- Name="VCResourceCompilerTool"\r
- PreprocessorDefinitions="NDEBUG"\r
- Culture="1033"\r
- />\r
- <Tool\r
- Name="VCPreLinkEventTool"\r
- />\r
- <Tool\r
- Name="VCLinkerTool"\r
- AdditionalOptions="/MACHINE:I386"\r
- AdditionalDependencies="opengl32.lib glu32.lib user32.lib winmm.lib gdi32.lib msvcrt.lib oldnames.lib odbc32.lib odbccp32.lib"\r
- OutputFile="Release/GLUT32.DLL"\r
- LinkIncremental="1"\r
- SuppressStartupBanner="true"\r
- AdditionalLibraryDirectories="../../mesa/Release"\r
- IgnoreAllDefaultLibraries="true"\r
- ProgramDatabaseFile=".\Release/GLUT32.pdb"\r
- ImportLibrary=".\Release/GLUT32.lib"\r
- />\r
- <Tool\r
- Name="VCALinkTool"\r
- />\r
- <Tool\r
- Name="VCManifestTool"\r
- />\r
- <Tool\r
- Name="VCXDCMakeTool"\r
- />\r
- <Tool\r
- Name="VCBscMakeTool"\r
- />\r
- <Tool\r
- Name="VCFxCopTool"\r
- />\r
- <Tool\r
- Name="VCAppVerifierTool"\r
- />\r
- <Tool\r
- Name="VCWebDeploymentTool"\r
- />\r
- <Tool\r
- Name="VCPostBuildEventTool"\r
- CommandLine="if not exist ..\..\..\..\lib md ..\..\..\..\lib
copy Release\GLUT32.LIB ..\..\..\..\lib
copy Release\GLUT32.DLL ..\..\..\..\lib
if exist ..\..\..\..\progs\demos copy Release\GLUT32.DLL ..\..\..\..\progs\demos
"\r
- />\r
- </Configuration>\r
- </Configurations>\r
- <References>\r
- </References>\r
- <Files>\r
- <Filter\r
- Name="Source Files"\r
- Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_8x13.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_9x15.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_bitmap.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_bwidth.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_cindex.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_cmap.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_cursor.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_dials.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_dstr.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_event.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_ext.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_fbc.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_fullscrn.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_gamemode.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_get.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_hel10.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_hel12.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_hel18.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_init.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_input.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_joy.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_key.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_keyctrl.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_keyup.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_mesa.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_modifier.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_mroman.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_overlay.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_roman.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_shapes.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_space.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_stroke.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_swap.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_swidth.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_tablet.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_teapot.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_tr10.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_tr24.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_util.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_vidresize.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_warp.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_win.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glut_winmisc.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_glx.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_menu.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_util.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_winproc.c"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_x11.c"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Header Files"\r
- Filter="h;hpp;hxx;hm;inl"\r
- >\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutbitmap.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutint.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutstroke.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\glutwin32.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\stroke.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_glx.h"\r
- >\r
- </File>\r
- <File\r
- RelativePath="..\..\..\..\src\glut\glx\win32_x11.h"\r
- >\r
- </File>\r
- </Filter>\r
- <Filter\r
- Name="Resource Files"\r
- Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
- >\r
- </Filter>\r
- </Files>\r
- <Globals>\r
- </Globals>\r
-</VisualStudioProject>\r
+++ /dev/null
-Microsoft Visual Studio Solution File, Format Version 9.00\r
-# Visual C++ Express 2005\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gears", "demos\gears.vcproj", "{3A7B0671-10F8-45D1-B012-F6D650F817CE}"\r
- ProjectSection(ProjectDependencies) = postProject\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67} = {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}\r
- EndProjectSection\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glut", "glut\glut.vcproj", "{0234F0D2-C8A6-4C4D-93E7-0E2248049C67}"\r
-EndProject\r
-Global\r
- GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
- Debug|Win32 = Debug|Win32\r
- Release|Win32 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Debug|Win32.Build.0 = Debug|Win32\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Release|Win32.ActiveCfg = Release|Win32\r
- {3A7B0671-10F8-45D1-B012-F6D650F817CE}.Release|Win32.Build.0 = Release|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Debug|Win32.Build.0 = Debug|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Release|Win32.ActiveCfg = Release|Win32\r
- {0234F0D2-C8A6-4C4D-93E7-0E2248049C67}.Release|Win32.Build.0 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(SolutionProperties) = preSolution\r
- HideSolutionNode = FALSE\r
- EndGlobalSection\r
-EndGlobal\r