diff options
author | Sven Gothel <[email protected]> | 2013-10-30 19:14:53 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-30 19:14:53 +0100 |
commit | 4fcc1d68d6cdfc87a80b7c86103b02ef54f3fa41 (patch) | |
tree | 4278d63aa9307751082a692685470ceee08c16a9 | |
parent | 802f52a2ed4769703786f03fbc9b036fecca49bd (diff) |
Add GLES1Impl 'finalizeInit()' to avoid a 'catched exception roundtrip'
-rw-r--r-- | make/config/jogl/gl-impl-CustomJavaCode-gles1.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gles1.java b/make/config/jogl/gl-impl-CustomJavaCode-gles1.java index deb73e042..8d5dcc7a5 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gles1.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gles1.java @@ -12,6 +12,9 @@ public GLES1Impl(GLProfile glp, GLContextImpl context) { this.glProfile = glp; } +public final void finalizeInit() { +} + @Override public final boolean isGL4bc() { return false; |