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
(1) |
2
(4) |
3
|
4
|
5
|
|
6
|
7
(2) |
8
(3) |
9
(5) |
10
|
11
(4) |
12
|
|
13
(2) |
14
(2) |
15
(2) |
16
(9) |
17
|
18
|
19
|
|
20
|
21
(7) |
22
(4) |
23
(4) |
24
|
25
(10) |
26
|
|
27
(4) |
28
(16) |
29
(14) |
30
(11) |
31
(1) |
|
|
|
From: Brian M. <ma...@us...> - 2005-03-27 20:13:07
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/devil In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18167/src/java/org/lwjgl/test/devil Modified Files: BasicTest.java Log Message: minor cleanup Index: BasicTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/devil/BasicTest.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- BasicTest.java 25 Mar 2005 01:40:42 -0000 1.8 +++ BasicTest.java 27 Mar 2005 20:12:47 -0000 1.9 @@ -40,6 +40,7 @@ import org.lwjgl.devil.ILU; import org.lwjgl.devil.ILUT; import org.lwjgl.devil.ILinfo; +import org.lwjgl.BufferUtils; /** * $Id$ @@ -61,8 +62,8 @@ } System.out.println("error = " + ILU.iluErrorString(IL.ilGetError())); System.out.println("ilGenImages"); - IntBuffer im = ByteBuffer.allocateDirect(4).order(ByteOrder.nativeOrder()).asIntBuffer(); - IL.ilGenImages(1, im); + IntBuffer im = BufferUtils.createIntBuffer(1); + IL.ilGenImages(im); System.out.println("ilBindImage"); IL.ilBindImage(im.get(0)); IL.ilEnable(IL.IL_ORIGIN_SET); |
|
From: Brian M. <ma...@us...> - 2005-03-27 19:48:55
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5740/src/java/org/lwjgl/devil Modified Files: ILU.java ILUT.java Log Message: minor cleanup Index: ILUT.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil/ILUT.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ILUT.java 27 Mar 2005 19:36:09 -0000 1.7 +++ ILUT.java 27 Mar 2005 19:48:47 -0000 1.8 @@ -237,7 +237,7 @@ private static String getPathFromClassLoader(String libname) { try { Sys.log("getPathFromClassLoader: searching for: " + libname); - Object o = IL.class.getClassLoader(); + Object o = ILUT.class.getClassLoader(); Class c = o.getClass(); while (c != null) { try { Index: ILU.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil/ILU.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ILU.java 27 Mar 2005 19:36:09 -0000 1.7 +++ ILU.java 27 Mar 2005 19:48:47 -0000 1.8 @@ -272,7 +272,7 @@ private static String getPathFromClassLoader(String libname) { try { Sys.log("getPathFromClassLoader: searching for: " + libname); - Object o = IL.class.getClassLoader(); + Object o = ILU.class.getClassLoader(); Class c = o.getClass(); while (c != null) { try { |
|
From: Brian M. <ma...@us...> - 2005-03-27 19:36:18
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32324/src/java/org/lwjgl/devil Modified Files: ILUT.java ILU.java Log Message: minor cleanup Index: ILUT.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil/ILUT.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ILUT.java 25 Mar 2005 13:00:06 -0000 1.6 +++ ILUT.java 27 Mar 2005 19:36:09 -0000 1.7 @@ -165,7 +165,7 @@ /** * Native method to create ILUT instance * - * @param iluPaths Array of strings containing paths to search for ILUT library + * @param ilutPaths Array of strings containing paths to search for ILUT library */ protected static native void nCreate(String[] ilutPaths) throws LWJGLException; @@ -196,8 +196,7 @@ } // Add all possible paths from java.library.path - String java_library_path = System.getProperty("java.library.path"); - StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator); + StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator); while (st.hasMoreTokens()) { String path = st.nextToken(); possible_paths.add(path + File.separator + platform_lib_name); Index: ILU.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil/ILU.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ILU.java 25 Mar 2005 13:00:06 -0000 1.6 +++ ILU.java 27 Mar 2005 19:36:09 -0000 1.7 @@ -231,7 +231,6 @@ } // Add all possible paths from java.library.path - String java_library_path = System.getProperty("java.library.path"); StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator); while (st.hasMoreTokens()) { String path = st.nextToken(); |
|
From: Brian M. <ma...@us...> - 2005-03-27 19:35:07
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31900/src/java/org/lwjgl/devil Modified Files: IL.java Log Message: reworked methods to use buffer position removed not used code Index: IL.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/devil/IL.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- IL.java 25 Mar 2005 13:00:06 -0000 1.10 +++ IL.java 27 Mar 2005 19:34:44 -0000 1.11 @@ -332,18 +332,18 @@ public static native int ilCreateSubImage(int Type, int Num); public static native boolean ilDefaultImage(); - public static void ilDeleteImages(int num, IntBuffer images) { + public static void ilDeleteImages(IntBuffer images) { BufferChecks.checkDirect(images); - nilDeleteImages(num, images, images.position()); + nilDeleteImages(images.remaining(), images, images.position()); } private static native void nilDeleteImages(int num, IntBuffer images, int images_offset); public static native boolean ilDisable(int Mode); public static native boolean ilEnable(int Mode); public static native boolean ilFormatFunc(int Mode); - public static void ilGenImages(int num, IntBuffer images) { + public static void ilGenImages(IntBuffer images) { BufferChecks.checkDirect(images); - nilGenImages(num, images, images.position()); + nilGenImages(images.remaining(), images, images.position()); } private static native void nilGenImages(int num, IntBuffer images, int images_offset); @@ -363,18 +363,18 @@ public static native boolean ilIsEnabled(int Mode); public static native boolean ilIsImage(int Image); public static native boolean ilIsValid(int Type, String FileName); - public static boolean ilIsValidL(int Type, ByteBuffer Lump, int Size) { + public static boolean ilIsValidL(int Type, ByteBuffer Lump) { BufferChecks.checkDirect(Lump); - return nilIsValidL(Type, Lump, Lump.position(), Size); + return nilIsValidL(Type, Lump, Lump.position(), Lump.remaining()); } private static native boolean nilIsValidL(int Type, ByteBuffer Lump, int lump_offset, int Size); public static native void ilKeyColour(float Red, float Green, float Blue, float Alpha); public static native boolean ilLoad(int Type, String FileName); public static native boolean ilLoadImage(String fileName); - public static boolean ilLoadL(int Type, ByteBuffer Lump, int Size) { + public static boolean ilLoadL(int Type, ByteBuffer Lump) { BufferChecks.checkDirect(Lump); - return nilLoadL(Type, Lump, Lump.position(), Size); + return nilLoadL(Type, Lump, Lump.position(), Lump.remaining()); } private static native boolean nilLoadL(int Type, ByteBuffer Lump, int lump_offset, int Size); @@ -390,9 +390,9 @@ public static native void ilResetWrite(); public static native boolean ilSave(int Type, String FileName); public static native boolean ilSaveImage(String FileName); - public static int ilSaveL(int Type, ByteBuffer Lump, int Size) { + public static int ilSaveL(int Type, ByteBuffer Lump) { BufferChecks.checkDirect(Lump); - return nilSaveL(Type, Lump, Lump.position(), Size); + return nilSaveL(Type, Lump, Lump.position(), Lump.remaining()); } private static native int nilSaveL(int Type, ByteBuffer Lump, int lump_offset, int Size); @@ -524,7 +524,7 @@ ByteBuffer lump = ByteBuffer.allocateDirect(buffer.length); lump.put(buffer); lump.flip(); - result = ilLoadL(type, lump, buffer.length); + result = ilLoadL(type, lump); } catch (IOException e) { e.printStackTrace(); result = false; @@ -643,7 +643,6 @@ } // Add all possible paths from java.library.path - String java_library_path = System.getProperty("java.library.path"); StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator); while (st.hasMoreTokens()) { String path = st.nextToken(); |