diff options
author | Sven Gothel <[email protected]> | 2012-02-24 02:40:10 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-24 02:40:10 +0100 |
commit | 5940f88b19a375bd20432be01bde02cda065fbce (patch) | |
tree | ff3b7cdc7522a23ccbbd389a74faf2ceccf62fb7 /make/config | |
parent | 29ee4fa97a7e17fe2eb07797350200300d8126d7 (diff) |
Fix MultisampleDemo01 -> MultisampleDemoES1 (proper profile, remove immediate mode for ES1) ; Fix GLES1Impl.glOrtho()
Diffstat (limited to 'make/config')
-rw-r--r-- | make/config/jogl/gl-es1.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/config/jogl/gl-es1.cfg b/make/config/jogl/gl-es1.cfg index 1488c18e6..2a7b64dd3 100644 --- a/make/config/jogl/gl-es1.cfg +++ b/make/config/jogl/gl-es1.cfg @@ -67,7 +67,7 @@ JavaPrologue glPixelStorei glStateTracker.setInt(pname, param); JavaPrologue glGetIntegerv if ( glStateTracker.getInt(pname, params, params_offset) ) { return; } CustomJavaCode GLES1Impl public void glOrtho(double left, double right, double bottom, double top, double near_val, double far_val) { -CustomJavaCode GLES1Impl glOrtho((float) left, (float) right, (float) bottom, (float) top, (float) near_val, (float) far_val); } +CustomJavaCode GLES1Impl glOrthof((float) left, (float) right, (float) bottom, (float) top, (float) near_val, (float) far_val); } CustomJavaCode GLES1Impl public void glFrustum(double left, double right, double bottom, double top, double zNear, double zFar) { CustomJavaCode GLES1Impl glFrustumf((float) left, (float) right, (float) bottom, (float) top, (float) zNear, (float) zFar); } |