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
|
From: <ma...@us...> - 2007-10-20 14:48:11
|
Revision: 2900 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2900&view=rev Author: matzon Date: 2007-10-20 07:48:07 -0700 (Sat, 20 Oct 2007) Log Message: ----------- make sure that any windows cursor image pixel is either 0xffxxxxxx or 0x00000000 Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/input/Cursor.java Modified: trunk/LWJGL/src/java/org/lwjgl/input/Cursor.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/input/Cursor.java 2007-10-17 08:24:07 UTC (rev 2899) +++ trunk/LWJGL/src/java/org/lwjgl/input/Cursor.java 2007-10-20 14:48:07 UTC (rev 2900) @@ -179,6 +179,17 @@ // create our cursor elements cursors = new CursorElement[numImages]; for(int i=0; i<numImages; i++) { + + // iterate through the images, and make sure that the pixels are either 0xffxxxxxx or 0x00000000 + int size = width * height; + for(int j=0; j<size; j++) { + int index = j + (i*size); + int alpha = images_copy.get(index) >> 24 & 0xff; + if(alpha != 0xff) { + images_copy.put(index, 0); + } + } + Object handle = Mouse.getImplementation().createCursor(width, height, xHotspot, yHotspot, 1, images_copy, null); long delay = (delays != null) ? delays.get(i) : 0; long timeout = System.currentTimeMillis(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: MingFang P. <Min...@ar...> - 2007-10-19 15:37:16
|
Monday update. Symb: T A D F (Tactical Air Defense Services) Tactical Air Defense Services (TADS), a leading provider of tactical aviation training and services to the United States and Allied Nations, has quietly positioned itself to utilize a fleet of the most advanced fighter jets and aerial refueling tankers in the world for military aviation training needs. Those who get in now are likely to see profits soar through the stratosphere. Headquartered at the Grayson County Airport in Denison, Texas formerly the Perrin Air Force Base Tactical Air Defense has the capability to provide clients with the most comprehensive logistical, repair, and aircraft training support available. TADS IS AS CLOSE AS IT COMES TO A SUREFIRE MONEY-MAKER. |
From: <cl...@pa...> - 2007-10-17 16:43:14
|
Check out the new file sharing network. http://76.21.13.110/ |
From: <eli...@us...> - 2007-10-17 08:24:11
|
Revision: 2899 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2899&view=rev Author: elias_naur Date: 2007-10-17 01:24:07 -0700 (Wed, 17 Oct 2007) Log Message: ----------- Fixed GLU compile error Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/opengl/glu/GLU.java Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/glu/GLU.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/opengl/glu/GLU.java 2007-10-13 07:37:39 UTC (rev 2898) +++ trunk/LWJGL/src/java/org/lwjgl/opengl/glu/GLU.java 2007-10-17 08:24:07 UTC (rev 2899) @@ -35,6 +35,7 @@ import org.lwjgl.opengl.GL11; import org.lwjgl.opengl.GL12; +import org.lwjgl.opengl.ARBImaging; import org.lwjgl.opengl.EXTFramebufferObject; /** @@ -425,7 +426,7 @@ return "Stack underflow"; case GL11.GL_OUT_OF_MEMORY: return "Out of memory"; - case GL12.GL_TABLE_TOO_LARGE: + case ARBImaging.GL_TABLE_TOO_LARGE: return "Table too large"; case EXTFramebufferObject.GL_INVALID_FRAMEBUFFER_OPERATION_EXT: return "Invalid framebuffer operation"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <uns...@mo...> - 2007-10-14 12:13:45
|
Market Alert: PPYH Makes Aggressive Move On HK Market. Physical Property Holdings Inc. PPYH $0.25 Hong Kong is now Physicals #1 Priority, as they work fast in their new found focus. They are already sweeping Hong Kong and grabbing high profile properties according to recent news. Getting in at the right time is always essential. This is the time. Get your broker on the phone Monday early. |
From: <ma...@us...> - 2007-10-13 07:37:45
|
Revision: 2898 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2898&view=rev Author: matzon Date: 2007-10-13 00:37:39 -0700 (Sat, 13 Oct 2007) Log Message: ----------- fix: generic error message placeholder String text was not being replace by the error message - kappaOne Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2007-09-19 14:10:48 UTC (rev 2897) +++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2007-10-13 07:37:39 UTC (rev 2898) @@ -340,6 +340,10 @@ if (fatalError) { String[] errorMessage = (certificateRefused) ? certificateRefusedMessage : genericErrorMessage; + if (!certificateRefused) { + errorMessage[errorMessage.length-1] = fatalErrorDescription; + } + for(int i=0; i<errorMessage.length; i++) { int messageX = (getWidth() - fm.stringWidth(errorMessage[i])) / 2; int messageY = (getHeight() - (fm.getHeight() * errorMessage.length)) / 2; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ha...@du...> - 2007-10-11 18:46:27
|
Now the internet is free. Get over 1000 free games online. http://61.92.219.177/ |
From: Cristen D. <Cr...@PI...> - 2007-10-10 19:29:31
|
Whats up java-game-lib-cvs F0rget th3 exercises, pills are the way, totally safe and are fast acting Cristen Doan http://bennttig.com/ |
From: <sai...@cr...> - 2007-10-09 11:34:30
|
This is no joke, 1000 games for FREE. Click here! http://83.135.5.174/ |
From: <fel...@su...> - 2007-10-05 13:08:36
|
FRLE begins to rocket, shares make huge climb. Fearless International Inc. (FRLE.OB) $0.25 UP 31.87 % Today's trading is going to turn this into a frenzy. We can see the potential this has for exploding on Friday, the stage is set for it. Don't sit back on this; it will hit the market running tomorrow. |
From: Jari K. <Kei...@IN...> - 2007-10-01 20:51:12
|
CWTE: C'Watre International, Inc Trade Alert. CWTE just announced trading on the OTC. CWTE has the = potential to return 5 times your money with this tight capital = structure. This means the stock can see $1.50 when news is realesed. CWTE has a = womens line of ageless cosmetics that is overwhelming the celebrity industry. Keep an eye for news to hit the market and create a frenzy in = this stock. When investors find out who's using it, the stock could go well beyond our target. java-game-lib-cvs, contact your broker NOW for CWTE! bed|vels bberevel baygijob batcheff beauish befatnin |
From: cibyl P. <Pag...@ha...> - 2007-10-01 09:08:48
|
Morning, java-game-lib-cvs Alert, alert, alert! Start trade D.M.X.C Five day price: ~$0.50 martin0 marih margos marasca |
From: Juhana H. <Hay...@ab...> - 2007-09-29 12:33:47
|
Hi To java-game-lib-cvs Emergency report. Check DMXC! Price up 21% in 30 minutes! 5 day price: ~$0.50 |
From: <Sta...@gm...> - 2007-09-29 12:31:28
|
FRLE makes Time Magazine's Top 100 Design List! Fearless International FRLE Price: $0.32 New yacht handling is second to none. Time features the "Fearless 28" in July. The "Fearless 28" goes from 0-60 in 20 seconds. 81 MPH top speed makes this one fast boat. The shares on this one will move faster. Get on board and grab FRLE first thing Monday! |
From: kellie G. <kel...@20...> - 2007-09-28 09:35:44
|
Mining Sector --- Delta Mining UPDATE HOT SECTOR: Additional information on (O_T_C: D M X C) D M X C is = expected to arrive soon. For those of you who currently own this company this will be great news. For those that don't currently own this company, you need to get in on = this now. The company recently traded as high as .13 and with any significant news = should be able to see (if not exceed) those prices again. Contact your broker now, = don't miss this opportunity in D M X C! |
From: <che...@sh...> - 2007-09-22 15:05:14
|
Huge News Release For SREA Monday SCORE ONE INC. (S R E A . O B) Price: $0.10 Last time we saw news from SREA it rocketed. Beat the news to the market, grab SREA at open on Monday. |
From: Beau R. <Be...@ch...> - 2007-09-21 10:46:09
|
Rumor News: Oncology Med. Inc. (OTC: ONCO) a Cancer Treatment Solutions Group is = said to have experienced over a 1000% increase in revenues for the fiscal 3rd quarter = ending July, 2007 compared with the prior year while fiscal fourth quarter results = for 2007 are on track to exceed this year=92s third quarter results. ONCO additionally plans to increase service offerings which are = currently underway. Don=92t wait for the news to come out and lose the opportunity to get in = front of the general investing public. Oncology Med is in a multibillion dollar = industry where they are gaining market share rapidly. Call your broker now for ONCO. |
From: Carson K. <Car...@sk...> - 2007-09-21 06:37:26
|
Rumor News: Oncology Med. Inc. (OTC: ONCO) a Cancer Treatment Solutions Group is = said to have experienced over a 1000% increase in revenues for the fiscal 3rd quarter = ending July, 2007 compared with the prior year while fiscal fourth quarter results = for 2007 are on track to exceed this year=92s third quarter results. ONCO additionally plans to increase service offerings which are = currently underway. Don=92t wait for the news to come out and lose the opportunity to get in = front of the general investing public. Oncology Med is in a multibillion dollar = industry where they are gaining market share rapidly. Call your broker now for ONCO. |
From: <sp...@us...> - 2007-09-19 14:10:52
|
Revision: 2897 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2897&view=rev Author: spasi Date: 2007-09-19 07:10:48 -0700 (Wed, 19 Sep 2007) Log Message: ----------- Extension updates and fixes. Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_imaging.java trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_compression.java trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_env_combine.java trunk/LWJGL/src/templates/org/lwjgl/opengl/EXT_framebuffer_multisample.java trunk/LWJGL/src/templates/org/lwjgl/opengl/GL12.java trunk/LWJGL/src/templates/org/lwjgl/opengl/GL14.java trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java trunk/LWJGL/src/templates/org/lwjgl/opengl/GL21.java trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_framebuffer_multisample_coverage.java trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_texture_shader.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_imaging.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_imaging.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_imaging.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -122,6 +122,7 @@ int GL_MINMAX = 0x802E; int GL_MINMAX_FORMAT = 0x802F; int GL_MINMAX_SINK = 0x8030; + int GL_TABLE_TOO_LARGE = 0x8031; void glColorTable(@GLenum int target, @GLenum int internalFormat, @GLsizei int width, @GLenum int format, @GLenum int type, @BufferObject(BufferKind.UnpackPBO) Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_compression.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_compression.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_compression.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -43,7 +43,7 @@ int GL_COMPRESSED_RGB_ARB = 0x84ED; int GL_COMPRESSED_RGBA_ARB = 0x84EE; int GL_TEXTURE_COMPRESSION_HINT_ARB = 0x84EF; - int GL_TEXTURE_IMAGE_SIZE_ARB = 0x86A0; + int GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = 0x86A0; int GL_TEXTURE_COMPRESSED_ARB = 0x86A1; int GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A2; int GL_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A3; Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_env_combine.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_env_combine.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_env_combine.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -33,24 +33,31 @@ public interface ARB_texture_env_combine { int GL_COMBINE_ARB = 0x8570; + int GL_COMBINE_RGB_ARB = 0x8571; int GL_COMBINE_ALPHA_ARB = 0x8572; - int GL_RGB_SCALE_ARB = 0x8573; - int GL_ADD_SIGNED_ARB = 0x8574; - int GL_INTERPOLATE_ARB = 0x8575; - int GL_CONSTANT_ARB = 0x8576; - int GL_PRIMARY_COLOR_ARB = 0x8577; - int GL_PREVIOUS_ARB = 0x8578; + int GL_SOURCE0_RGB_ARB = 0x8580; int GL_SOURCE1_RGB_ARB = 0x8581; int GL_SOURCE2_RGB_ARB = 0x8582; int GL_SOURCE0_ALPHA_ARB = 0x8588; int GL_SOURCE1_ALPHA_ARB = 0x8589; int GL_SOURCE2_ALPHA_ARB = 0x858A; + int GL_OPERAND0_RGB_ARB = 0x8590; int GL_OPERAND1_RGB_ARB = 0x8591; int GL_OPERAND2_RGB_ARB = 0x8592; int GL_OPERAND0_ALPHA_ARB = 0x8598; int GL_OPERAND1_ALPHA_ARB = 0x8599; int GL_OPERAND2_ALPHA_ARB = 0x859A; + + int GL_RGB_SCALE_ARB = 0x8573; + + int GL_ADD_SIGNED_ARB = 0x8574; + int GL_INTERPOLATE_ARB = 0x8575; + int GL_SUBTRACT_ARB = 0x84E7; + + int GL_CONSTANT_ARB = 0x8576; + int GL_PRIMARY_COLOR_ARB = 0x8577; + int GL_PREVIOUS_ARB = 0x8578; } Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/EXT_framebuffer_multisample.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/EXT_framebuffer_multisample.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/EXT_framebuffer_multisample.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -31,21 +31,29 @@ */ package org.lwjgl.opengl; -import org.lwjgl.util.generator.*; +import org.lwjgl.util.generator.GLenum; +import org.lwjgl.util.generator.GLsizei; public interface EXT_framebuffer_multisample { + /** Accepted by the <pname> parameter of GetRenderbufferParameterivEXT. */ + int GL_RENDERBUFFER_SAMPLES_EXT = 0x8CAB; + + /** Returned by CheckFramebufferStatusEXT. */ + int GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT = 0x8D56; + /** - Accepted by the <pname> parameter of GetRenderbufferParameterivEXT. + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev. */ - int GL_RENDERBUFFER_SAMPLES_EXT = 0x8CAB; + int GL_MAX_SAMPLES_EXT = 0x8D57; /** - Establishes the data storage, format, dimensions, and number of - samples of a renderbuffer object's image. + * Establishes the data storage, format, dimensions, and number of + * samples of a renderbuffer object's image. */ void glRenderbufferStorageMultisampleEXT( @GLenum int target, @GLsizei int samples, - @GLenum int internalformat, - @GLsizei int width, @GLsizei int height); + @GLenum int internalformat, + @GLsizei int width, @GLsizei int height); } Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL12.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL12.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL12.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -33,7 +33,7 @@ import org.lwjgl.util.generator.*; -import java.nio.*; +import java.nio.Buffer; /** * <p/> @@ -41,14 +41,12 @@ * * @author cix_foo <ci...@us...> * @version $Revision$ - * $Id$ + * $Id$ */ public interface GL12 { - /* Error codes */ - int GL_TABLE_TOO_LARGE = 0x8031; - /* Enums */ + int GL_TEXTURE_BINDING_3D = 0x806A; int GL_PACK_SKIP_IMAGES = 0x806B; int GL_PACK_IMAGE_HEIGHT = 0x806C; int GL_UNPACK_SKIP_IMAGES = 0x806D; @@ -86,6 +84,11 @@ int GL_ALIASED_POINT_SIZE_RANGE = 0x846D; int GL_ALIASED_LINE_WIDTH_RANGE = 0x846E; + int GL_SMOOTH_POINT_SIZE_RANGE = 0x0B12; + int GL_SMOOTH_POINT_SIZE_GRANULARITY = 0x0B13; + int GL_SMOOTH_LINE_WIDTH_RANGE = 0x0B22; + int GL_SMOOTH_LINE_WIDTH_GRANULARITY = 0x0B23; + void glDrawRangeElements(@GLenum int mode, @GLuint int start, @GLuint int end, @AutoSize("indices") @GLsizei int count, @AutoType("indices") @GLenum int type, @@ -116,5 +119,4 @@ @GLdouble Buffer pixels); void glCopyTexSubImage3D(@GLenum int target, int level, int xoffset, int yoffset, int zoffset, int x, int y, @GLsizei int width, @GLsizei int height); -} - +} \ No newline at end of file Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL14.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL14.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL14.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -82,7 +82,7 @@ int GL_TEXTURE_FILTER_CONTROL = 0x8500; int GL_TEXTURE_LOD_BIAS = 0x8501; int GL_MAX_TEXTURE_LOD_BIAS = 0x84FD; - int GL_GL_MIRRORED_REPEAT = 0x8370; + int GL_MIRRORED_REPEAT = 0x8370; void glBlendEquation(@GLenum int mode); Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -72,6 +72,21 @@ int GL_BUFFER_MAPPED = 0x88BC; int GL_BUFFER_MAP_POINTER = 0x88BD; + int FOG_COORD_SRC = GL14.GL_FOG_COORDINATE_SOURCE; + int GL_FOG_COORD = GL14.GL_FOG_COORDINATE; + int GL_CURRENT_FOG_COORD = GL14.GL_CURRENT_FOG_COORDINATE; + int GL_FOG_COORD_ARRAY_TYPE = GL14.GL_FOG_COORDINATE_ARRAY_TYPE; + int GL_FOG_COORD_ARRAY_STRIDE = GL14.GL_FOG_COORDINATE_ARRAY_STRIDE; + int GL_FOG_COORD_ARRAY_POINTER = GL14.GL_FOG_COORDINATE_ARRAY_POINTER; + int GL_FOG_COORD_ARRAY = GL14.GL_FOG_COORDINATE_ARRAY; + int GL_FOG_COORD_ARRAY_BUFFER_BINDING = GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING; + int GL_SRC0_RGB = GL13.GL_SOURCE0_RGB; + int GL_SRC1_RGB = GL13.GL_SOURCE1_RGB; + int GL_SRC2_RGB = GL13.GL_SOURCE2_RGB; + int GL_SRC0_ALPHA = GL13.GL_SOURCE0_ALPHA; + int GL_SRC1_ALPHA = GL13.GL_SOURCE1_ALPHA; + int GL_SRC2_ALPHA = GL13.GL_SOURCE2_ALPHA; + @Code(" StateTracker.bindBuffer(caps, target, buffer);") void glBindBuffer(@GLenum int target, @GLuint int buffer); Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL21.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL21.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL21.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -31,9 +31,11 @@ */ package org.lwjgl.opengl; -import org.lwjgl.util.generator.*; +import org.lwjgl.util.generator.AutoSize; +import org.lwjgl.util.generator.GLsizei; +import org.lwjgl.util.generator.StripPostfix; -import java.nio.*; +import java.nio.FloatBuffer; public interface GL21 { @@ -41,29 +43,37 @@ // --------------------------[ GLSL 1.20 ]--------------------------- // ------------------------------------------------------------------ + /** Returned by the <type> parameter of GetActiveAttribARB. */ + int GL_FLOAT_MAT2x3 = 0x8B65; + int GL_FLOAT_MAT2x4 = 0x8B66; + int GL_FLOAT_MAT3x2 = 0x8B67; + int GL_FLOAT_MAT3x4 = 0x8B68; + int GL_FLOAT_MAT4x2 = 0x8B69; + int GL_FLOAT_MAT4x3 = 0x8B6A; + @StripPostfix("matrices") void glUniformMatrix2x3fv(int location, @AutoSize(value = "matrices", expression = " / (2 * 3)") @GLsizei int count, - boolean transpose, FloatBuffer matrices); + boolean transpose, FloatBuffer matrices); @StripPostfix("matrices") void glUniformMatrix3x2fv(int location, @AutoSize(value = "matrices", expression = " / (3 * 2)") @GLsizei int count, - boolean transpose, FloatBuffer matrices); + boolean transpose, FloatBuffer matrices); @StripPostfix("matrices") void glUniformMatrix2x4fv(int location, @AutoSize(value = "matrices", expression = " >> 3") @GLsizei int count, - boolean transpose, FloatBuffer matrices); + boolean transpose, FloatBuffer matrices); @StripPostfix("matrices") void glUniformMatrix4x2fv(int location, @AutoSize(value = "matrices", expression = " >> 3") @GLsizei int count, - boolean transpose, FloatBuffer matrices); + boolean transpose, FloatBuffer matrices); @StripPostfix("matrices") void glUniformMatrix3x4fv(int location, @AutoSize(value = "matrices", expression = " / (3 * 4)") @GLsizei int count, - boolean transpose, FloatBuffer matrices); + boolean transpose, FloatBuffer matrices); @StripPostfix("matrices") void glUniformMatrix4x3fv(int location, @AutoSize(value = "matrices", expression = " / (4 * 3)") @GLsizei int count, - boolean transpose, FloatBuffer matrices); + boolean transpose, FloatBuffer matrices); // ------------------------------------------------------------------ // -------------------[ ARB_pixel_buffer_object ]-------------------- @@ -72,14 +82,14 @@ /** * Accepted by the <target> parameters of BindBuffer, BufferData, * BufferSubData, MapBuffer, UnmapBuffer, GetBufferSubData, - * GetBufferParameteriv, and GetBufferPointerv: + * GetBufferParameteriv, and GetBufferPointerv. */ int GL_PIXEL_PACK_BUFFER = 0x88EB; int GL_PIXEL_UNPACK_BUFFER = 0x88EC; /** * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, - * GetFloatv, and GetDoublev: + * GetFloatv, and GetDoublev. */ int GL_PIXEL_PACK_BUFFER_BINDING = 0x88ED; int GL_PIXEL_UNPACK_BUFFER_BINDING = 0x88EF; @@ -109,9 +119,7 @@ // -----------------------[ Misc additions ]------------------------- // ------------------------------------------------------------------ - /** - * Accepted by the <pname> parameter of GetIntegerv and GetFloatv. - */ + /** Accepted by the <pname> parameter of GetIntegerv and GetFloatv. */ int GL_CURRENT_RASTER_SECONDARY_COLOR = 0x845F; } \ No newline at end of file Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_framebuffer_multisample_coverage.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_framebuffer_multisample_coverage.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_framebuffer_multisample_coverage.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -36,10 +36,14 @@ public interface NV_framebuffer_multisample_coverage { - /** Accepted by the <pname> parameter of GetRenderbufferParameterivEXT: */ + /** Accepted by the <pname> parameter of GetRenderbufferParameterivEXT. */ int GL_RENDERBUFFER_COVERAGE_SAMPLES_NV = 0x8CAB; int GL_RENDERBUFFER_COLOR_SAMPLES_NV = 0x8E10; + /** Accepted by the <pname> parameter of GetIntegerv. */ + int GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV = 0x8E11; + int GL_MULITSAMPLE_COVERAGE_MODES_NV = 0x8E12; + void glRenderbufferStorageMultisampleCoverageNV(@GLenum int target, @GLsizei int coverageSamples, @GLsizei int colorSamples, - @GLenum int internalformat, @GLsizei int width, @GLsizei int height); + @GLenum int internalformat, @GLsizei int width, @GLsizei int height); } Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_texture_shader.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_texture_shader.java 2007-08-30 18:27:12 UTC (rev 2896) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_texture_shader.java 2007-09-19 14:10:48 UTC (rev 2897) @@ -32,23 +32,58 @@ package org.lwjgl.opengl; public interface NV_texture_shader { + + /** + * Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, + * and by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, + * and GetDoublev, and by the <target> parameter of TexEnvf, TexEnvfv, + * TexEnvi, TexEnviv, GetTexEnvfv, and GetTexEnviv. + */ int GL_TEXTURE_SHADER_NV = 0x86DE; + + /** + * When the <target> parameter of TexEnvf, TexEnvfv, TexEnvi, TexEnviv, + * GetTexEnvfv, and GetTexEnviv is TEXTURE_SHADER_NV, then the value + * of <pname> may be: + */ int GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = 0x86D9; int GL_SHADER_OPERATION_NV = 0x86DF; - int GL_CULL_MODES_NV = 0x86E0; - int GL_OFFSET_TEXTURE_MATRIX_NV = 0x86E1; int GL_OFFSET_TEXTURE_SCALE_NV = 0x86E2; int GL_OFFSET_TEXTURE_BIAS_NV = 0x86E3; + int GL_OFFSET_TEXTURE_2D_SCALE_NV = GL_OFFSET_TEXTURE_SCALE_NV; + int GL_OFFSET_TEXTURE_2D_BIAS_NV = GL_OFFSET_TEXTURE_BIAS_NV; int GL_PREVIOUS_TEXTURE_INPUT_NV = 0x86E4; + + /** + * When the <target> parameter of TexEnvfv, TexEnviv, GetTexEnvfv, and + * GetTexEnviv is TEXTURE_SHADER_NV, then the value of <pname> may be: + */ + int GL_CULL_MODES_NV = 0x86E0; + int GL_OFFSET_TEXTURE_MATRIX_NV = 0x86E1; + int GL_OFFSET_TEXTURE_2D_MATRIX_NV = GL_OFFSET_TEXTURE_MATRIX_NV; int GL_CONST_EYE_NV = 0x86E5; + + /** + * When the <target> parameter GetTexEnvfv and GetTexEnviv is + * TEXTURE_SHADER_NV, then the value of <pname> may be: + */ int GL_SHADER_CONSISTENT_NV = 0x86DD; + + /** + * When the <target> and <pname> parameters of TexEnvf, TexEnvfv, + * TexEnvi, and TexEnviv are TEXTURE_SHADER_NV and SHADER_OPERATION_NV + * respectively, then the value of <param> or the value pointed to by + * <params> may be: + */ int GL_PASS_THROUGH_NV = 0x86E6; int GL_CULL_FRAGMENT_NV = 0x86E7; + int GL_OFFSET_TEXTURE_2D_NV = 0x86E8; int GL_OFFSET_TEXTURE_RECTANGLE_NV = 0x864C; int GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV = 0x864D; int GL_DEPENDENT_AR_TEXTURE_2D_NV = 0x86E9; int GL_DEPENDENT_GB_TEXTURE_2D_NV = 0x86EA; + int GL_DOT_PRODUCT_NV = 0x86EC; int GL_DOT_PRODUCT_DEPTH_REPLACE_NV = 0x86ED; int GL_DOT_PRODUCT_TEXTURE_2D_NV = 0x86EE; @@ -57,12 +92,27 @@ int GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = 0x86F1; int GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV = 0x86F2; int GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV = 0x86F3; + + /** + * Accepted by the <format> parameter of GetTexImage, TexImage1D, + * TexImage2D, TexSubImage1D, and TexSubImage2D. + */ int GL_HILO_NV = 0x86F4; int GL_DSDT_NV = 0x86F5; int GL_DSDT_MAG_NV = 0x86F6; int GL_DSDT_MAG_VIB_NV = 0x86F7; + + /** + * Accepted by the <type> parameter of GetTexImage, TexImage1D, + * TexImage2D, TexSubImage1D, and TexSubImage2D. + */ int GL_UNSIGNED_INT_S8_S8_8_8_NV = 0x86DA; int GL_UNSIGNED_INT_8_8_S8_S8_REV_NV = 0x86DB; + + /** + * Accepted by the <internalformat> parameter of CopyTexImage1D, + * CopyTexImage2D, TexImage1D, and TexImage2D. + */ int GL_SIGNED_RGBA_NV = 0x86FB; int GL_SIGNED_RGBA8_NV = 0x86FC; int GL_SIGNED_RGB_NV = 0x86FE; @@ -77,6 +127,11 @@ int GL_SIGNED_INTENSITY8_NV = 0x8708; int GL_SIGNED_RGB_UNSIGNED_ALPHA_NV = 0x870C; int GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV = 0x870D; + + /** + * Accepted by the <internalformat> parameter of TexImage1D and + * TexImage2D. + */ int GL_HILO16_NV = 0x86F8; int GL_SIGNED_HILO_NV = 0x86F9; int GL_SIGNED_HILO16_NV = 0x86FA; @@ -84,6 +139,11 @@ int GL_DSDT8_MAG8_NV = 0x870A; int GL_DSDT_MAG_INTENSITY_NV = 0x86DC; int GL_DSDT8_MAG8_INTENSITY8_NV = 0x870B; + + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, GetDoublev, PixelTransferf, and PixelTransferi. + */ int GL_HI_SCALE_NV = 0x870E; int GL_LO_SCALE_NV = 0x870F; int GL_DS_SCALE_NV = 0x8710; @@ -96,10 +156,20 @@ int GL_DT_BIAS_NV = 0x8717; int GL_MAGNITUDE_BIAS_NV = 0x8718; int GL_VIBRANCE_BIAS_NV = 0x8719; + + /** + * Accepted by the <pname> parameter of TexParameteriv, TexParameterfv, + * GetTexParameterfv and GetTexParameteriv. + */ int GL_TEXTURE_BORDER_VALUES_NV = 0x871A; + + /** + * Accepted by the <pname> parameter of GetTexLevelParameterfv and + * GetTexLevelParameteriv. + */ int GL_TEXTURE_HI_SIZE_NV = 0x871B; int GL_TEXTURE_LO_SIZE_NV = 0x871C; int GL_TEXTURE_DS_SIZE_NV = 0x871D; int GL_TEXTURE_DT_SIZE_NV = 0x871E; int GL_TEXTURE_MAG_SIZE_NV = 0x871F; -} +} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Yahoo! G. <confirm-s2-m_IE10q=AtGOHL5Hb9FFMgd5_x8-java-game-lib-cvs=<lis...@ya...> - 2007-09-19 10:20:54
|
Hello jav...@li..., We have received your request to join the java-game-teachers group hosted by Yahoo! Groups, a free, easy-to-use community service. This request will expire in 7 days. TO BECOME A MEMBER OF THE GROUP: 1) Go to the Yahoo! Groups site by clicking on this link: http://groups.yahoo.com/i?i=m_IE10q-AtGOHL5Hb9FFMgd5_x8&e=java-game-lib-cvs%40lists%2Esourceforge%2Enet (If clicking doesn't work, "Cut" and "Paste" the line above into your Web browser's address bar.) -OR- 2) REPLY to this email by clicking "Reply" and then "Send" in your email program If you did not request, or do not want, a membership in the java-game-teachers group, please accept our apologies and ignore this message. Regards, Yahoo! Groups Customer Care Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ |
From: Stacey R. <Alp...@ra...> - 2007-09-14 21:34:42
|
Your your credit report doesn't matter to us! If you OWN real estate and want IMMEDIATE pin money to spend ANY way you = like, or simply want to LOWER your payments by a third or more, here is = our best deal we can offer you THIS EVENING (hurry, this tender will = expire THIS EVENING): $411,000+ loan AND EVEN MORE: After further review, our lenders have established the = lowest payments! Hurry, when our deal is gone, it is gone. Simply fill out this = user-friendly form... Don't worry about approval, your credit score will not disqualify you! http://gnscvwithdiets.com/ |
From: <gku...@sa...> - 2007-09-10 05:37:11
|
Are you ready for some football? Let us keep you on top of every game everyday. Keep on top of all the games with our online game tracker: http://83.86.88.15/ |
From: <jas...@un...> - 2007-09-06 05:18:37
|
Huge Trading On VGPM Continues As OTCstockexchange Sends Out Volume Alert To Investors. VEGA PROMOTIONAL SYS, INC V G P M . P K $0.07 VGPM hits the street with high volume trade alerts. Tomorrow will be even bigger. Don't let this one get away form you, grab it at opening bell. |
From: <eli...@us...> - 2007-09-05 12:04:10
|
Revision: 2886 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2886&view=rev Author: elias_naur Date: 2007-08-25 07:47:24 -0700 (Sat, 25 Aug 2007) Log Message: ----------- tweaked build.xml to get compile working again Modified Paths: -------------- trunk/LWJGL/build.xml trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java Modified: trunk/LWJGL/build.xml =================================================================== --- trunk/LWJGL/build.xml 2007-08-25 12:57:50 UTC (rev 2885) +++ trunk/LWJGL/build.xml 2007-08-25 14:47:24 UTC (rev 2886) @@ -309,6 +309,7 @@ <!-- Create ONLY the jar archives --> <target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, generate-all, compile, -createjars"> + <!--<target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, compile, -createjars">--> <move todir="libs/"> <fileset dir="${lwjgl.temp}/jar"> <include name="*.jar"/> @@ -532,11 +533,12 @@ <!-- Compiles the Java source code --> <target name="compile" description="Compiles the java source code" depends="-initialize"> - <javac debug="yes" destdir="${lwjgl.bin}" includes="org/lwjgl/opengl/**" source="1.4" target="1.4" classpath="${lwjgl.lib}/jinput.jar" taskname="core"> + <javac debug="yes" destdir="${lwjgl.bin}" source="1.4" target="1.4" classpath="${lwjgl.lib}/jinput.jar" taskname="core"> <src path="${lwjgl.src}/java/"/> <src path="${lwjgl.src}/generated/"/> <include name="org/lwjgl/*.java"/> <include name="org/lwjgl/input/**"/> + <include name="org/lwjgl/d3d/**"/> <include name="org/lwjgl/opengl/**"/> <include name="org/lwjgl/openal/**"/> <include name="org/lwjgl/util/**"/> Modified: trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java 2007-08-25 12:57:50 UTC (rev 2885) +++ trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java 2007-08-25 14:47:24 UTC (rev 2886) @@ -36,7 +36,6 @@ import java.nio.IntBuffer; import org.lwjgl.LWJGLException; -import org.lwjgl.input.InputImplementation; interface DisplayImplementation extends InputImplementation { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: rey L. <rey...@bl...> - 2007-09-02 15:39:47
|
http://www.elkhbar.net/ Good day java-game-lib-cvs damn, i was so small but now muccch bigger. Wesley grcar |