Revision: 2341
Author: spasi
Date: 2006-05-26 05:58:37 -0700 (Fri, 26 May 2006)
ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2341&view=rev
Log Message:
-----------
Fixed i64 suffixes
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/util/generator/GLTypeMap.java
trunk/LWJGL/src/java/org/lwjgl/util/generator/PostfixTranslator.java
Modified: trunk/LWJGL/src/java/org/lwjgl/util/generator/GLTypeMap.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/util/generator/GLTypeMap.java 2006-05-25 13:03:35 UTC (rev 2340)
+++ trunk/LWJGL/src/java/org/lwjgl/util/generator/GLTypeMap.java 2006-05-26 12:58:37 UTC (rev 2341)
@@ -136,9 +136,9 @@
else if (annotation_type.equals(GLhalf.class))
return "h";
else if (annotation_type.equals(GLuint64EXT.class))
- return "l";
+ return "i64";
else if (annotation_type.equals(GLint64EXT.class))
- return "l";
+ return "i64";
else if (annotation_type.equals(GLboolean.class) || annotation_type.equals(GLvoid.class))
return "";
else
Modified: trunk/LWJGL/src/java/org/lwjgl/util/generator/PostfixTranslator.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/util/generator/PostfixTranslator.java 2006-05-25 13:03:35 UTC (rev 2340)
+++ trunk/LWJGL/src/java/org/lwjgl/util/generator/PostfixTranslator.java 2006-05-26 12:58:37 UTC (rev 2341)
@@ -153,7 +153,7 @@
type = "b";
break;
case LONG:
- type = "l";
+ type = "i64";
break;
default:
throw new RuntimeException(kind + " is not allowed");
@@ -179,4 +179,4 @@
public void visitWildcardType(WildcardType t) {
throw new RuntimeException(t + " is not allowed");
}
-}
+}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|