Bug 420

Summary: Missing Constants in javax.media.opengl.GL
Product: [JogAmp] Jogl Reporter: Martin Karing <karing.martin>
Component: coreAssignee: Sven Gothel <sgothel>
Status: VERIFIED INVALID    
Severity: trivial CC: sgothel
Priority: ---    
Version: 2   
Hardware: All   
OS: all   
Type: FEATURE SCM Refs:
Workaround: ---

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