You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(134) |
Sep
(52) |
Oct
(13) |
Nov
(342) |
Dec
(163) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(44) |
Feb
(62) |
Mar
(158) |
Apr
(38) |
May
(70) |
Jun
(58) |
Jul
(104) |
Aug
(207) |
Sep
(83) |
Oct
(122) |
Nov
(23) |
Dec
(49) |
| 2004 |
Jan
(119) |
Feb
(132) |
Mar
(192) |
Apr
(140) |
May
(77) |
Jun
(74) |
Jul
(201) |
Aug
(63) |
Sep
(102) |
Oct
(70) |
Nov
(173) |
Dec
(78) |
| 2005 |
Jan
(174) |
Feb
(197) |
Mar
(105) |
Apr
(59) |
May
(77) |
Jun
(43) |
Jul
(21) |
Aug
(18) |
Sep
(47) |
Oct
(37) |
Nov
(74) |
Dec
(50) |
| 2006 |
Jan
(44) |
Feb
(19) |
Mar
(32) |
Apr
(24) |
May
(31) |
Jun
(55) |
Jul
(138) |
Aug
(28) |
Sep
(12) |
Oct
(41) |
Nov
(58) |
Dec
(24) |
| 2007 |
Jan
(28) |
Feb
(14) |
Mar
(10) |
Apr
(68) |
May
(30) |
Jun
(26) |
Jul
(18) |
Aug
(63) |
Sep
(19) |
Oct
(29) |
Nov
(20) |
Dec
(10) |
| 2008 |
Jan
(38) |
Feb
(7) |
Mar
(37) |
Apr
(120) |
May
(41) |
Jun
(36) |
Jul
(39) |
Aug
(24) |
Sep
(28) |
Oct
(30) |
Nov
(36) |
Dec
(75) |
| 2009 |
Jan
(46) |
Feb
(22) |
Mar
(50) |
Apr
(70) |
May
(134) |
Jun
(105) |
Jul
(75) |
Aug
(34) |
Sep
(38) |
Oct
(34) |
Nov
(19) |
Dec
(20) |
| 2010 |
Jan
(11) |
Feb
(20) |
Mar
(65) |
Apr
(83) |
May
(104) |
Jun
(73) |
Jul
(78) |
Aug
(57) |
Sep
(43) |
Oct
(35) |
Nov
(9) |
Dec
(4) |
| 2011 |
Jan
(21) |
Feb
(11) |
Mar
(18) |
Apr
(10) |
May
(18) |
Jun
(15) |
Jul
(48) |
Aug
(25) |
Sep
(17) |
Oct
(45) |
Nov
(15) |
Dec
(12) |
| 2012 |
Jan
(21) |
Feb
(9) |
Mar
(12) |
Apr
(9) |
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
(10) |
Sep
(12) |
Oct
(1) |
Nov
(28) |
Dec
(5) |
| 2013 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2016 |
Jan
(2) |
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
(2) |
|
4
|
5
(2) |
6
(5) |
7
|
8
(7) |
9
(1) |
10
|
|
11
|
12
(4) |
13
|
14
|
15
|
16
|
17
|
|
18
|
19
|
20
(36) |
21
(5) |
22
|
23
|
24
|
|
25
|
26
(8) |
27
(1) |
28
(4) |
29
|
30
(25) |
31
(19) |
|
From: <eli...@pr...> - 2004-01-26 19:58:31
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6330/src/native/win32 Modified Files: org_lwjgl_Display.cpp Log Message: Changed GetDeviceCaps(dc, COLORRES) to use BITSPIXEL instead Index: org_lwjgl_Display.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/win32/org_lwjgl_Display.cpp,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- org_lwjgl_Display.cpp 20 Dec 2003 22:03:25 -0000 1.58 +++ org_lwjgl_Display.cpp 26 Jan 2004 19:57:18 -0000 1.59 @@ -250,7 +250,7 @@ // Get the device caps width = GetDeviceCaps(screenDC, HORZRES); height = GetDeviceCaps(screenDC, VERTRES); - bpp = GetDeviceCaps(screenDC, COLORRES); + bpp = GetDeviceCaps(screenDC, BITSPIXEL); freq = GetDeviceCaps(screenDC, VREFRESH); if (freq <= 1) freq = 0; // Unknown @@ -400,7 +400,7 @@ // Get the device caps int width = GetDeviceCaps(screenDC, HORZRES); int height = GetDeviceCaps(screenDC, VERTRES); - int bpp = GetDeviceCaps(screenDC, COLORRES); + int bpp = GetDeviceCaps(screenDC, BITSPIXEL); int freq = GetDeviceCaps(screenDC, VREFRESH); if (freq <= 1) freq = 0; // Unknown |
|
From: <eli...@pr...> - 2004-01-26 17:15:11
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common/ext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24206/src/native/common/ext Added Files: Makefile.am Log Message: Added missing build files for extensions --- NEW FILE: Makefile.am --- noinst_LTLIBRARIES = libext.la libext_la_SOURCES = $(SRC) INCLUDES=-I.. SRC=org_lwjgl_opengl_ext_EXTBlendFuncSeparate.cpp \ org_lwjgl_opengl_ext_EXTCompiledVertexArray.cpp \ org_lwjgl_opengl_ext_EXTDrawRangeElements.cpp \ org_lwjgl_opengl_ext_EXTFogCoord.cpp \ org_lwjgl_opengl_ext_EXTMultiDrawArrays.cpp \ org_lwjgl_opengl_ext_EXTPointParameters.cpp \ org_lwjgl_opengl_ext_EXTSecondaryColor.cpp \ org_lwjgl_opengl_ext_EXTStencilTwoSide.cpp \ org_lwjgl_opengl_ext_EXTVertexShader.cpp \ org_lwjgl_opengl_ext_EXTVertexWeighting.cpp |
|
From: <eli...@pr...> - 2004-01-26 17:15:10
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common/nv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24206/src/native/common/nv Added Files: Makefile.am Log Message: Added missing build files for extensions --- NEW FILE: Makefile.am --- noinst_LTLIBRARIES = libnv.la libnv_la_SOURCES = $(SRC) INCLUDES=-I.. SRC=org_lwjgl_opengl_nv_NVEvaluators.cpp \ org_lwjgl_opengl_nv_NVFence.cpp \ org_lwjgl_opengl_nv_NVFragmentProgram.cpp \ org_lwjgl_opengl_nv_NVOcclusionQuery.cpp \ org_lwjgl_opengl_nv_NVPointSprite.cpp \ org_lwjgl_opengl_nv_NVProgram.cpp \ org_lwjgl_opengl_nv_NVRegisterCombiners.cpp \ org_lwjgl_opengl_nv_NVVertexArrayRange.cpp \ org_lwjgl_opengl_nv_NVVertexProgram.cpp |
|
From: <eli...@pr...> - 2004-01-26 17:15:10
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common/ati In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24206/src/native/common/ati Added Files: Makefile.am Log Message: Added missing build files for extensions --- NEW FILE: Makefile.am --- noinst_LTLIBRARIES = libati.la libati_la_SOURCES = $(SRC) INCLUDES=-I.. SRC=org_lwjgl_opengl_ati_ATIElementArray.cpp \ org_lwjgl_opengl_ati_ATIElementArray.cpp \ org_lwjgl_opengl_ati_ATIEnvmapBumpmap.cpp \ org_lwjgl_opengl_ati_ATIFragmentShader.cpp \ org_lwjgl_opengl_ati_ATIPnTriangles.cpp \ org_lwjgl_opengl_ati_ATISeparateStencil.cpp \ org_lwjgl_opengl_ati_ATIVertexArrayObject.cpp \ org_lwjgl_opengl_ati_ATIVertexStreams.cpp |
|
From: <eli...@pr...> - 2004-01-26 17:15:09
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common/arb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24206/src/native/common/arb Added Files: Makefile.am Log Message: Added missing build files for extensions --- NEW FILE: Makefile.am --- noinst_LTLIBRARIES = libarb.la libarb_la_SOURCES = $(SRC) INCLUDES=-I.. SRC = org_lwjgl_opengl_arb_ARBProgram.cpp \ org_lwjgl_opengl_arb_ARBProgram.cpp \ org_lwjgl_opengl_arb_ARBMatrixPalette.cpp \ org_lwjgl_opengl_arb_ARBMultisample.cpp \ org_lwjgl_opengl_arb_ARBMultitexture.cpp \ org_lwjgl_opengl_arb_ARBPointParameters.cpp \ org_lwjgl_opengl_arb_ARBProgram.cpp \ org_lwjgl_opengl_arb_ARBTextureCompression.cpp \ org_lwjgl_opengl_arb_ARBTransposeMatrix.cpp \ org_lwjgl_opengl_arb_ARBVertexBlend.cpp \ org_lwjgl_opengl_arb_ARBVertexBufferObject.cpp \ org_lwjgl_opengl_arb_ARBVertexProgram.cpp \ org_lwjgl_opengl_arb_ARBWindowPos.cpp |
|
From: <eli...@pr...> - 2004-01-26 17:13:22
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23602/src/java/org/lwjgl/opengl Modified Files: GL11.java Log Message: Added glTexParameter[f|i]v to GL11.java Index: GL11.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/GL11.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- GL11.java 20 Jan 2004 11:19:12 -0000 1.1 +++ GL11.java 26 Jan 2004 17:12:21 -0000 1.2 @@ -1198,6 +1198,14 @@ private static native void nglTexSubImage1D(int target, int level, int xoffset, int width, int format, int type, Buffer pixels, int pixels_offset); public static native void glTexParameterf(int target, int pname, float param); public static native void glTexParameteri(int target, int pname, int param); + public static void glTexParameter(int target, int pname, FloatBuffer param) { + nglTexParameterfv(target, pname, param, param.position()); + } + private static native void nglTexParameterfv(int target, int pname, FloatBuffer param, int param_position); + public static void glTexParameter(int target, int pname, IntBuffer param) { + nglTexParameteriv(target, pname, param, param.position()); + } + private static native void nglTexParameteriv(int target, int pname, IntBuffer param, int param_position); public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, ByteBuffer pixels) { nglTexImage2D(target, level, internalformat, width, height, border, format, type, pixels, pixels.position()); } |
|
From: <eli...@pr...> - 2004-01-26 17:13:16
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23602/src/native/common Modified Files: org_lwjgl_opengl_GL11.cpp org_lwjgl_opengl_GL11.h Log Message: Added glTexParameter[f|i]v to GL11.java Index: org_lwjgl_opengl_GL11.cpp =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_opengl_GL11.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- org_lwjgl_opengl_GL11.cpp 20 Jan 2004 11:19:13 -0000 1.1 +++ org_lwjgl_opengl_GL11.cpp 26 Jan 2004 17:12:22 -0000 1.2 @@ -1936,6 +1936,18 @@ CHECK_GL_ERROR } +JNIEXPORT void JNICALL Java_org_lwjgl_opengl_GL11_nglTexParameterfv + (JNIEnv *env, jclass clazz, jint target, jint pname, jobject param, jint param_offset) { + GLfloat *address = param_offset + (GLfloat *)env->GetDirectBufferAddress(param); + glTexParameterfv(target, pname, address); +} + +JNIEXPORT void JNICALL Java_org_lwjgl_opengl_GL11_nglTexParameteriv + (JNIEnv *env, jclass clazz, jint target, jint pname, jobject param, jint param_offset) { + GLint *address = param_offset + (GLint *)env->GetDirectBufferAddress(param); + glTexParameteriv(target, pname, address); +} + /* * Class: org_lwjgl_opengl_GL11 * Method: glTexParameterf Index: org_lwjgl_opengl_GL11.h =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_opengl_GL11.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- org_lwjgl_opengl_GL11.h 20 Jan 2004 11:19:13 -0000 1.1 +++ org_lwjgl_opengl_GL11.h 26 Jan 2004 17:12:22 -0000 1.2 @@ -2547,6 +2547,22 @@ /* * Class: org_lwjgl_opengl_GL11 + * Method: nglTexParameterfv + * Signature: (IILjava/nio/FloatBuffer;I)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_opengl_GL11_nglTexParameterfv + (JNIEnv *, jclass, jint, jint, jobject, jint); + +/* + * Class: org_lwjgl_opengl_GL11 + * Method: nglTexParameteriv + * Signature: (IILjava/nio/IntBuffer;I)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_opengl_GL11_nglTexParameteriv + (JNIEnv *, jclass, jint, jint, jobject, jint); + +/* + * Class: org_lwjgl_opengl_GL11 * Method: nglTexImage2D * Signature: (IIIIIIIILjava/nio/Buffer;I)V */ |
|
From: Brian M. <ma...@us...> - 2004-01-26 13:50:02
|
Update of /cvsroot/java-game-lib/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9843 Modified Files: checkoutlist loginfo Removed Files: syncmail Log Message: using /cvsroot/sitedocs/CVSROOT/cvstools/syncmail instead of local copy Index: checkoutlist CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/CVSROOT/checkoutlist =================================================================== RCS file: /cvsroot/java-game-lib/CVSROOT/checkoutlist,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- checkoutlist 15 Aug 2002 20:30:31 -0000 1.4 +++ checkoutlist 25 Jan 2004 09:36:20 -0000 1.5 @@ -11,4 +11,4 @@ # [<whitespace>]<filename><whitespace><error message><end-of-line> # # comment lines begin with '#' -syncmail \ No newline at end of file +/cvsroot/sitedocs/CVSROOT/cvstools/syncmail \ No newline at end of file Index: loginfo CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/CVSROOT/loginfo =================================================================== RCS file: /cvsroot/java-game-lib/CVSROOT/loginfo,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- loginfo 15 Aug 2002 21:38:47 -0000 1.5 +++ loginfo 25 Jan 2004 09:36:20 -0000 1.6 @@ -24,4 +24,4 @@ #DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog # or #DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog -DEFAULT $CVSROOT/CVSROOT/syncmail -u %{sVv} jav...@li... \ No newline at end of file +DEFAULT /cvsroot/sitedocs/CVSROOT/cvstools/syncmail -u %{sVv} jav...@li... \ No newline at end of file --- syncmail DELETED --- CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/CVSROOT/syncmail |