diff options
author | Sven Gothel <[email protected]> | 2014-12-06 20:24:26 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-12-06 20:24:26 +0100 |
commit | dd56549ebb7400f40f973473760b5f53a8609cd0 (patch) | |
tree | 28cc5475b92172cbb58794bf12c46f81536e22e4 /src/jogl/classes/com/jogamp/opengl | |
parent | 74fe4c340162e973e86c0e405de915cea8c72ec4 (diff) |
Minor Cleanup (FBObject, GLBase)
FBObject: Remove redudant case
GLBase: Add API doc reference to GLContext implementation
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/FBObject.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/FBObject.java b/src/jogl/classes/com/jogamp/opengl/FBObject.java index 20e576716..bb96f2721 100644 --- a/src/jogl/classes/com/jogamp/opengl/FBObject.java +++ b/src/jogl/classes/com/jogamp/opengl/FBObject.java @@ -699,10 +699,7 @@ public class FBObject { final int magFilter, final int minFilter, final int wrapS, final int wrapT) { final int dataFormat, dataType; final boolean alpha = hasAlpha(internalFormat); - if( gl.isGLES3() ) { - dataFormat = alpha ? GL.GL_RGBA : GL.GL_RGB; - dataType = GL.GL_UNSIGNED_BYTE; - } else if( gl.isGLES() ) { + if( gl.isGLES() ) { dataFormat = alpha ? GL.GL_RGBA : GL.GL_RGB; dataType = GL.GL_UNSIGNED_BYTE; } else { |