Revision: 3606
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3606&view=rev
Author: spasi
Date: 2011-08-08 16:42:37 +0000 (Mon, 08 Aug 2011)
Log Message:
-----------
Added DSA functions.
Modified Paths:
--------------
trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_storage.java
Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_storage.java
===================================================================
--- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_storage.java 2011-08-08 10:48:14 UTC (rev 3605)
+++ trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_texture_storage.java 2011-08-08 16:42:37 UTC (rev 3606)
@@ -31,6 +31,7 @@
*/
package org.lwjgl.opengl;
+import org.lwjgl.util.generator.Dependent;
import org.lwjgl.util.generator.Reuse;
import org.lwjgl.util.generator.opengl.GLenum;
import org.lwjgl.util.generator.opengl.GLsizei;
@@ -55,4 +56,19 @@
@GLenum int internalformat,
@GLsizei int width, @GLsizei int height, @GLsizei int depth);
-}
+ @Dependent("EXT_direct_state_access")
+ void glTextureStorage1DEXT(@GLuint int texture, @GLenum int target, @GLsizei int levels,
+ @GLenum int internalformat,
+ @GLsizei int width);
+
+ @Dependent("EXT_direct_state_access")
+ void glTextureStorage2DEXT(@GLuint int texture, @GLenum int target, @GLsizei int levels,
+ @GLenum int internalformat,
+ @GLsizei int width, @GLsizei int height);
+
+ @Dependent("EXT_direct_state_access")
+ void glTextureStorage3DEXT(@GLuint int texture, @GLenum int target, @GLsizei int levels,
+ @GLenum int internalformat,
+ @GLsizei int width, @GLsizei int height, @GLsizei int depth);
+
+}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|