From: Carsten W. <ca...@us...> - 2006-11-20 21:30:47
|
Update of /cvsroot/jake2/jake2/src/jake2/render/opengl In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1721/src/jake2/render/opengl Modified Files: Tag: render-refactoring QGL.java Log Message: sort functions Index: QGL.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/render/opengl/Attic/QGL.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** QGL.java 14 Nov 2005 23:49:40 -0000 1.1.2.1 --- QGL.java 20 Nov 2006 21:30:42 -0000 1.1.2.2 *************** *** 9,14 **** --- 9,18 ---- */ + void glActiveTextureARB(int texture); + void glAlphaFunc(int func, float ref); + void glArrayElement(int index); + void glBegin(int mode); *************** *** 21,24 **** --- 25,30 ---- void glClearColor(float red, float green, float blue, float alpha); + void glClientActiveTextureARB(int texture); + void glColor3f(float red, float green, float blue); *************** *** 34,37 **** --- 40,46 ---- void glColorPointer(int size, int stride, FloatBuffer pointer); + void glColorTable(int target, int internalFormat, int width, int format, + int type, ByteBuffer data); + void glCullFace(int mode); *************** *** 75,78 **** --- 84,89 ---- void glInterleavedArrays(int format, int stride, FloatBuffer pointer); + void glLockArraysEXT(int first, int count); + void glLoadIdentity(); *************** *** 81,84 **** --- 92,97 ---- void glMatrixMode(int mode); + void glMultiTexCoord2f(int target, float s, float t); + void glOrtho(double left, double right, double bottom, double top, double zNear, double zFar); *************** *** 86,89 **** --- 99,106 ---- void glPixelStorei(int pname, int param); + void glPointParameterEXT(int pname, FloatBuffer pfParams); + + void glPointParameterfEXT(int pname, float param); + void glPointSize(float size); *************** *** 126,129 **** --- 143,148 ---- void glTranslatef(float x, float y, float z); + void glUnlockArraysEXT(); + void glVertex2f(float x, float y); *************** *** 134,155 **** void glViewport(int x, int y, int width, int height); - void glColorTable(int target, int internalFormat, int width, int format, - int type, ByteBuffer data); - - void glActiveTextureARB(int texture); - - void glClientActiveTextureARB(int texture); - - void glPointParameterEXT(int pname, FloatBuffer pfParams); - - void glPointParameterfEXT(int pname, float param); - - void glLockArraysEXT(int first, int count); - - void glArrayElement(int index); - - void glUnlockArraysEXT(); - - void glMultiTexCoord2f(int target, float s, float t); - } \ No newline at end of file --- 153,155 ---- |