diff options
author | Sven Gothel <[email protected]> | 2013-08-25 05:13:55 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-08-25 05:13:55 +0200 |
commit | d0aee05031cd52ad4f6753a8859a21e77845bc35 (patch) | |
tree | 9b0abe501bfdff1f7d2ef3d9529ce8a14bc441e4 /make/config | |
parent | 78b4d4ac014af4cc43638ecdb69daf1e17a9b7d1 (diff) |
GLES3Impl: Add NOP 'finalizeInit()' method, to avoid GLContentImpl not finding it and dumping a DEBUG message
Diffstat (limited to 'make/config')
-rw-r--r-- | make/config/jogl/gl-impl-CustomJavaCode-gles3.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gles3.java b/make/config/jogl/gl-impl-CustomJavaCode-gles3.java index ca15f4718..f5075c919 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gles3.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gles3.java @@ -14,6 +14,9 @@ public GLES3Impl(GLProfile glp, GLContextImpl context) { this._isES3 = glp.getImplName() == GLProfile.GLES3; } +public final void finalizeInit() { +} + @Override public final boolean isGL4bc() { return false; |