Update of /cvsroot/csdopenglnet/csdOpenGL/generator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4564/generator
Modified Files:
Makefile gtkContext.cs
Log Message:
GTK seems to run
Index: gtkContext.cs
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/gtkContext.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** gtkContext.cs 12 Jul 2004 17:17:56 -0000 1.1.1.1
--- gtkContext.cs 27 Jul 2004 11:24:53 -0000 1.2
***************
*** 40,44 ****
static extern void glXSwapBuffers ( IntPtr display, int drawableID );
! protected static uint[] stdInitializer = { GLX_RGBA,
GLX_RED_SIZE, 8,
GLX_GREEN_SIZE, 8,
--- 40,44 ----
static extern void glXSwapBuffers ( IntPtr display, int drawableID );
! protected static uint[] stdInitializerOrig = { GLX_RGBA,
GLX_RED_SIZE, 8,
GLX_GREEN_SIZE, 8,
***************
*** 47,50 ****
--- 47,51 ----
0 };
+ protected static uint[] stdInitializer = { GLX_RGBA, GLX_DEPTH_SIZE, 16, GLX_DOUBLEBUFFER, 0 };
public GdkGLContext() : this ( stdInitializer ) {
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/Makefile,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Makefile 20 Jul 2004 09:07:22 -0000 1.6
--- Makefile 27 Jul 2004 11:24:53 -0000 1.7
***************
*** 1,4 ****
FILES=generator.cs AssemblyInfo.cs define.cs typedef.cs function.cs
! GLFILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs csdFreeGLUTBase.cs csdFreeGLUT_extBase.cs csdFreeGLUT_stdBase.cs
CC=mcs
DEBUG=/d:DEBUG
--- 1,6 ----
FILES=generator.cs AssemblyInfo.cs define.cs typedef.cs function.cs
! GLUTFILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs csdFreeGLUTBase.cs csdFreeGLUT_extBase.cs csdFreeGLUT_stdBase.cs
! GLFILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs
!
CC=mcs
DEBUG=/d:DEBUG
***************
*** 30,34 ****
csdGLUTBase.cs: csdGenerator.exe gl_8h.xml glut_8h.xml
! mono ./csdGenerator.exe glut_8h.xml libcsdGL.so csdGLUTBase csdFreeGLUT_stdBase csdGLUTBase.cs gl_8h.xml
csdFreeGLUTBase.cs: csdGenerator.exe gl_8h.xml freeglut_8h.xml
--- 32,36 ----
csdGLUTBase.cs: csdGenerator.exe gl_8h.xml glut_8h.xml
! mono ./csdGenerator.exe glut_8h.xml libcsdGL.so csdGLUTBase csdGLUBase csdGLUTBase.cs gl_8h.xml
csdFreeGLUTBase.cs: csdGenerator.exe gl_8h.xml freeglut_8h.xml
|