Bug 420 - Missing Constants in javax.media.opengl.GL
Summary: Missing Constants in javax.media.opengl.GL
Status: VERIFIED INVALID
Alias: None
Product: Jogl
Classification: JogAmp
Component: core (show other bugs)
Version: 2
Hardware: All all
: --- trivial
Assignee: Sven Gothel
URL:
Depends on:
Blocks:
 
Reported: 2010-10-22 01:03 CEST by Martin Karing
Modified: 2015-09-27 03:14 CEST (History)
1 user (show)

See Also:
Type: FEATURE
SCM Refs:
Workaround: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Karing 2010-10-22 01:03:38 CEST
While some tests I found two constants in the interface javax.media.opengl.GL missing. When typing in the correct values everything works perfectly fine. So the only thing missing are actually the definitions of this constants.

The missing constants are:

GL_DOUBLE = 0x140A
GL_INT = 0x1404A
Comment 1 Sven Gothel 2010-11-10 19:34:12 CET
jogl/gensrc/classes/javax/media/opengl/GL2ES2.java:  public static final int GL_INT = 0x1404;

since it is part of OpenGL 1.0 and GLES2

++

jogl/gensrc/classes/javax/media/opengl/GL2GL3.java:  public static final int GL_DOUBLE = 0x140A;

since it is part of OpenGL 1.0 and forward compatible with >= GL3 (core profiles)

++ 

hence, this is not a bug