summaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/gl/CLGLTexture3d.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/mbien/opencl/gl/CLGLTexture3d.java')
-rw-r--r--src/com/mbien/opencl/gl/CLGLTexture3d.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/gl/CLGLTexture3d.java b/src/com/mbien/opencl/gl/CLGLTexture3d.java
index e1fef3a9..0a25c890 100644
--- a/src/com/mbien/opencl/gl/CLGLTexture3d.java
+++ b/src/com/mbien/opencl/gl/CLGLTexture3d.java
@@ -7,6 +7,7 @@ import com.mbien.opencl.CLImageFormat;
import com.mbien.opencl.CLMemory.GLObjectType;
import com.mbien.opencl.impl.CLImageFormatImpl;
import java.nio.Buffer;
+import javax.media.opengl.GLContext;
import static com.mbien.opencl.CL.*;
@@ -70,4 +71,17 @@ public class CLGLTexture3d<B extends Buffer> extends CLImage3d<B> implements CLG
return GLObjectType.GL_OBJECT_TEXTURE3D;
}
+ /**
+ * Returns the shared CLGLContext.
+ */
+ @Override
+ public CLGLContext getContext() {
+ return (CLGLContext) super.getContext();
+ }
+
+ @Override
+ public GLContext getGLContext() {
+ return getContext().getGLContext();
+ }
+
}