diff options
author | Sven Gothel <[email protected]> | 2012-10-18 16:50:40 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-10-18 16:50:40 +0200 |
commit | 1aea29bb5d253600213024fd2c12a91bf3599202 (patch) | |
tree | 44e43329002021da1a2749758f35d9ccfa996539 /src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java | |
parent | f25682cabc5f421c3126e75833ae70b5a16e5b2e (diff) |
FixedFuncPipeline: Don't handle CullFace, ES2 impl. already takes care of discarding pixels of culled faces.
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java b/src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java index ee2a08d1f..fad81226d 100644 --- a/src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java +++ b/src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncHook.java @@ -341,10 +341,12 @@ public class FixedFuncHook implements GLLightingFunc, GLMatrixFunc, GLPointerFun public void glAlphaFunc(int func, float ref) { fixedFunction.glAlphaFunc(func, ref); } + + /** ES2 supports CullFace implicit public void glCullFace(int faceName) { fixedFunction.glCullFace(faceName); gl.glCullFace(faceName); - } + } */ // // PointerIf |