From: Tim R. <ti...@us...> - 2004-09-11 08:10:51
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13407/GL Modified Files: Exceptions.cs Makefile gl.xml glu.xml glut.xml Removed Files: glxtokens_8h.xml Log Message: Restrukturierung Index: gl.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/gl.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gl.xml 6 Aug 2004 06:07:24 -0000 1.2 --- gl.xml 11 Sep 2004 08:10:41 -0000 1.3 *************** *** 1,5 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>gl_8h.xml</xmlInput> ! <linkLibrary>libGL.so</linkLibrary> <className>csdGLBase</className> <upperClass>System.Object</upperClass> --- 1,5 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>gl_8h.xml</xmlInput> ! <linkLibrary>opengl32.dll</linkLibrary> <className>csdGLBase</className> <upperClass>System.Object</upperClass> --- glxtokens_8h.xml DELETED --- Index: glut.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glut.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** glut.xml 17 Aug 2004 09:09:06 -0000 1.4 --- glut.xml 11 Sep 2004 08:10:41 -0000 1.5 *************** *** 1,7 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>glut_8h.xml</xmlInput> ! <linkLibrary>libcsdGL.so</linkLibrary> <className>csdGLUTBase</className> ! <upperClass>csdGLXTokens</upperClass> <outputFile>csdGLUTBase.cs</outputFile> <writeFunctions>true</writeFunctions> --- 1,7 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>glut_8h.xml</xmlInput> ! <linkLibrary>glut32.dll</linkLibrary> <className>csdGLUTBase</className> ! <upperClass>csdGLUBase</upperClass> <outputFile>csdGLUTBase.cs</outputFile> <writeFunctions>true</writeFunctions> Index: glu.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glu.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** glu.xml 6 Aug 2004 06:07:24 -0000 1.2 --- glu.xml 11 Sep 2004 08:10:41 -0000 1.3 *************** *** 1,5 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>glu_8h.xml</xmlInput> ! <linkLibrary>libGLU.so</linkLibrary> <className>csdGLUBase</className> <upperClass>csdGLBase</upperClass> --- 1,5 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xmlInput>glu_8h.xml</xmlInput> ! <linkLibrary>dlu32.dll</linkLibrary> <className>csdGLUBase</className> <upperClass>csdGLBase</upperClass> Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile 17 Aug 2004 09:09:06 -0000 1.5 --- Makefile 11 Sep 2004 08:10:41 -0000 1.6 *************** *** 1,3 **** ! FILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs Exceptions.cs csdGLXTokens.cs GEN=mono ../generator/csdGenerator.exe --- 1,3 ---- ! FILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs Exceptions.cs GEN=mono ../generator/csdGenerator.exe *************** *** 10,21 **** PACKAGE=csDragons GAC=gacutil $(GACUTIL_FLAGS) ! all: csdGL.dll ! csdGL.dll: AssemblyInfo.cs $(FILES) $(MCS) -target:library $^ -out:$@ - - csdGLXTokens.cs: glxtokens_8h.xml glxtokens.xml - $(GEN) glxtokens.xml csdGLBase.cs: gl_8h.xml gl.xml --- 10,19 ---- PACKAGE=csDragons GAC=gacutil $(GACUTIL_FLAGS) + DLL=csDragons.OpenGL.dll ! all: $(DLL) ! $(DLL): AssemblyInfo.cs $(FILES) $(MCS) -target:library $^ -out:$@ csdGLBase.cs: gl_8h.xml gl.xml *************** *** 34,44 **** ! install-gac: csdGL.dll csdGL_Gtk.dll ! $(GAC) /i csdGL.dll /f /package $(PACKAGE) uninstall: uninstall-gac uninstall-gac: ! $(GAC) /u csdGL clean: --- 32,42 ---- ! install-gac: $(DLL) ! $(GAC) /i $(DLL) /f /package $(PACKAGE) uninstall: uninstall-gac uninstall-gac: ! $(GAC) /u $(DLL) clean: Index: Exceptions.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/Exceptions.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Exceptions.cs 5 Aug 2004 13:09:14 -0000 1.1 --- Exceptions.cs 11 Sep 2004 08:10:41 -0000 1.2 *************** *** 53,68 **** public class GLOutOfMemory : GLException {}; - /** \brief No GL Context available - * - * This Exception is raised if there is an fatal error - * during obtaining the OpenGL context. - */ - public class NoGLContextException : GLException {} - - /** \brief No X Display available - * - * This Exception is raised if no XDisplay can be used. - */ - public class NoXDisplayException : GLException {} --- 53,56 ---- |