aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/gl/CLGLTexture2d.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-04-12 22:18:39 +0200
committerMichael Bien <[email protected]>2010-04-12 22:18:39 +0200
commitbf07b44ed6a8958dd321cc4c08fd2bdd08299611 (patch)
treee24b7c4e4197a80e0ecaad75b9b3667299fd8323 /src/com/mbien/opencl/gl/CLGLTexture2d.java
parent7680472b21ec1e2deacb49addae65c820a2e2a4d (diff)
renamed package com.mbien.* in com.jogamp.* JOCL is now officially a JogAmp team player ;).
Diffstat (limited to 'src/com/mbien/opencl/gl/CLGLTexture2d.java')
-rw-r--r--src/com/mbien/opencl/gl/CLGLTexture2d.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/com/mbien/opencl/gl/CLGLTexture2d.java b/src/com/mbien/opencl/gl/CLGLTexture2d.java
deleted file mode 100644
index 37c9a28a..00000000
--- a/src/com/mbien/opencl/gl/CLGLTexture2d.java
+++ /dev/null
@@ -1,65 +0,0 @@
-package com.mbien.opencl.gl;
-
-import com.mbien.opencl.CL;
-import com.mbien.opencl.CLContext;
-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.*;
-
-/**
- * 2D OpenCL image representing an 2D OpenGL texture.
- * @author Michael Bien
- */
-public class CLGLTexture2d<B extends Buffer> extends CLGLImage2d<B> implements CLGLTexture {
-
- public final int target;
-
- public final int mipMapLevel;
-
- public CLGLTexture2d(CLContext context, B directBuffer, CLImageFormat format, CLImageInfoAccessor accessor, int target, int mipLevel, int width, int height, long id, int glid, int flags) {
- super(context, directBuffer, format, accessor, width, height, id, glid, flags);
- this.target = target;
- this.mipMapLevel = mipLevel;
- }
-
- static <B extends Buffer> CLGLTexture2d<B> createFromGLTexture2d(CLContext context, B directBuffer, int target, int texture, int mipLevel, int flags) {
-
- CLGLBuffer.checkBuffer(directBuffer, flags);
-
- CL cl = getCL(context);
- int[] result = new int[1];
- CLGLI clgli = (CLGLI)cl;
-
- long id = clgli.clCreateFromGLTexture2D(context.ID, flags, target, mipLevel, texture, result, 0);
-
- CLImageInfoAccessor accessor = new CLImageInfoAccessor(cl, id);
-
- CLImageFormat format = createUninitializedImageFormat();
- accessor.getInfo(CL_IMAGE_FORMAT, CLImageFormatImpl.size(), format.getFormatImpl().getBuffer(), null);
-
- int width = (int)accessor.getLong(CL_IMAGE_WIDTH);
- int height = (int)accessor.getLong(CL_IMAGE_HEIGHT);
-
- return new CLGLTexture2d<B>(context, directBuffer, format, accessor, target, mipLevel, width, height, id, width, flags);
-
- }
-
- public int getTextureTarget() {
- return target;
- }
-
- public int getMipMapLevel() {
- return mipMapLevel;
- }
-
- @Override
- public GLObjectType getGLObjectType() {
- return GLObjectType.GL_OBJECT_TEXTURE2D;
- }
-
-
-}