From 8f1373e15eef1fb8bd00dfe500a2eddc71a74d7e Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Thu, 7 Nov 2013 15:30:26 +0100 Subject: Android ES3 Movie Demos: Add workaround for: P0003: Extension 'GL_OES_EGL_image_external' not supported + // Bug on Nexus 10, ES3 - Android 4.3, where + // GL_OES_EGL_image_external extension directive leads to a failure _with_ '#version 300 es' ! + // P0003: Extension 'GL_OES_EGL_image_external' not supported + preludeGLSLVersion = false; --- src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java | 3 --- src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/jogl/classes/com/jogamp/opengl/util') diff --git a/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java b/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java index f0864f949..b0a645cbb 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java +++ b/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java @@ -318,9 +318,6 @@ public interface GLMediaPlayer extends TextureSequence { public int getTextureCount(); - /** Returns the texture target used by implementation. */ - public int getTextureTarget(); - /** Sets the texture unit. Defaults to 0. */ public void setTextureUnit(int u); diff --git a/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java b/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java index 6f1dd4c64..6c2949c2b 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java +++ b/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java @@ -163,6 +163,9 @@ public interface TextureSequence { public void newFrameAvailable(T ts, TextureFrame newFrame, long when); } + /** Returns the texture target used by implementation. */ + public int getTextureTarget(); + /** Return the texture unit used to render the current frame. */ public int getTextureUnit(); -- cgit v1.2.3