diff options
author | Sven Gothel <[email protected]> | 2012-02-14 06:39:35 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-14 06:39:35 +0100 |
commit | 354af5b403220b0d94d2d73e067c80d87ec3fc6d (patch) | |
tree | 94d03a718b8a069642cb9b1e4d426a18de3d2548 /make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java | |
parent | 413026e5f9277dc9271543d76d3094c299322c70 (diff) |
OpenGL 4.2 functional support (GL header sync)
Note: EXT_shader_image_load_store is dropped to favor ARB_shader_image_load_store
Since no new (4.2) extension still does not require >= 3.1
all extensions are visible within the common profile GL2GL3.
Please review!
Diffstat (limited to 'make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java')
-rw-r--r-- | make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java b/make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java index 1777c1557..e7351076b 100644 --- a/make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java +++ b/make/config/jogl/gl-if-CustomJavaCode-gl2_gl3.java @@ -5,4 +5,9 @@ public static final int GL_INVALID_INDEX = 0xFFFFFFFF ; /** Part of <code>GL_ARB_sync</code> */ public static final long GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFFL ; +/** Part of <code>GL_ARB_separate_shader_objects</code> */ +public static final int GL_ALL_SHADER_BITS = 0xFFFFFFFF ; + +/** Part of <code>GL_ARB_shader_image_load_store</code> */ +public static final int GL_ALL_BARRIER_BITS = 0xFFFFFFFF ; |