aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes
diff options
context:
space:
mode:
authorErik De Rijcke <[email protected]>2015-05-06 16:30:09 +0200
committerSven Gothel <[email protected]>2019-11-21 03:11:55 +0100
commitcd07cb251ae2df8e8cfd455a91cbe7d5394a77e0 (patch)
treeab1d7433e3cd149b3580ab7fb9e6c0c32462699d /src/jogl/classes
parent766bcfbb6346a4b0dc161d88dc2a38f2ec64ef4b (diff)
make void* an opaque long in EGL generated class
Diffstat (limited to 'src/jogl/classes')
-rw-r--r--src/jogl/classes/jogamp/opengl/util/av/EGLMediaPlayerImpl.java20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/av/EGLMediaPlayerImpl.java b/src/jogl/classes/jogamp/opengl/util/av/EGLMediaPlayerImpl.java
index 0e3317c5e..756ac1213 100644
--- a/src/jogl/classes/jogamp/opengl/util/av/EGLMediaPlayerImpl.java
+++ b/src/jogl/classes/jogamp/opengl/util/av/EGLMediaPlayerImpl.java
@@ -27,17 +27,15 @@
*/
package jogamp.opengl.util.av;
-import java.nio.Buffer;
-import java.nio.IntBuffer;
-
-import com.jogamp.opengl.GL;
-
import com.jogamp.common.nio.Buffers;
+import com.jogamp.opengl.GL;
import com.jogamp.opengl.egl.EGL;
import com.jogamp.opengl.egl.EGLExt;
import com.jogamp.opengl.util.texture.Texture;
import com.jogamp.opengl.util.texture.TextureSequence;
+import java.nio.IntBuffer;
+
import jogamp.opengl.egl.EGLContext;
import jogamp.opengl.egl.EGLDrawable;
@@ -57,14 +55,14 @@ public abstract class EGLMediaPlayerImpl extends GLMediaPlayerImpl {
public static class EGLTextureFrame extends TextureSequence.TextureFrame {
- public EGLTextureFrame(final Buffer clientBuffer, final Texture t, final long khrImage, final long khrSync) {
+ public EGLTextureFrame(final long clientBuffer, final Texture t, final long khrImage, final long khrSync) {
super(t);
this.clientBuffer = clientBuffer;
this.image = khrImage;
this.sync = khrSync;
}
- public final Buffer getClientBuffer() { return clientBuffer; }
+ public final long getClientBuffer() { return clientBuffer; }
public final long getImage() { return image; }
public final long getSync() { return sync; }
@@ -72,7 +70,7 @@ public abstract class EGLMediaPlayerImpl extends GLMediaPlayerImpl {
public String toString() {
return "EGLTextureFrame[pts " + pts + " ms, l " + duration + " ms, texID "+ texture.getTextureObject() + ", img "+ image + ", sync "+ sync+", clientBuffer "+clientBuffer+"]";
}
- protected final Buffer clientBuffer;
+ protected final long clientBuffer;
protected final long image;
protected final long sync;
}
@@ -87,7 +85,7 @@ public abstract class EGLMediaPlayerImpl extends GLMediaPlayerImpl {
@Override
protected TextureSequence.TextureFrame createTexImage(final GL gl, final int texName) {
final Texture texture = super.createTexImageImpl(gl, texName, getWidth(), getHeight());
- final Buffer clientBuffer;
+ final long clientBuffer;
final long image;
final long sync;
final boolean eglUsage = TextureType.KHRImage == texType || useKHRSync ;
@@ -108,7 +106,7 @@ public abstract class EGLMediaPlayerImpl extends GLMediaPlayerImpl {
if(TextureType.KHRImage == texType) {
final IntBuffer nioTmp = Buffers.newDirectIntBuffer(1);
// create EGLImage from texture
- clientBuffer = null; // FIXME
+ clientBuffer = 0; // FIXME
nioTmp.put(0, EGL.EGL_NONE);
image = eglExt.eglCreateImageKHR( eglDrawable.getNativeSurface().getDisplayHandle(), eglCtx.getHandle(),
EGLExt.EGL_GL_TEXTURE_2D_KHR,
@@ -117,7 +115,7 @@ public abstract class EGLMediaPlayerImpl extends GLMediaPlayerImpl {
throw new RuntimeException("EGLImage creation failed: "+EGL.eglGetError()+", ctx "+eglCtx+", tex "+texName+", err "+toHexString(EGL.eglGetError()));
}
} else {
- clientBuffer = null;
+ clientBuffer = 0;
image = 0;
}