summaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/gl/CLGLObject.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/CLGLObject.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/CLGLObject.java')
-rw-r--r--src/com/mbien/opencl/gl/CLGLObject.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/com/mbien/opencl/gl/CLGLObject.java b/src/com/mbien/opencl/gl/CLGLObject.java
deleted file mode 100644
index 84c3ecef..00000000
--- a/src/com/mbien/opencl/gl/CLGLObject.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Created on Friday, February 26 2010
- */
-package com.mbien.opencl.gl;
-
-import com.mbien.opencl.CLMemory.GLObjectType;
-import javax.media.opengl.GLContext;
-
-/**
- *
- * @author Michael Bien
- */
-interface CLGLObject {
-
- /**
- * Returns the OpenGL object id of this shared object.
- */
- public int getGLObjectID();
-
- /**
- * Returns the OpenGL buffer type of this shared object.
- */
- public GLObjectType getGLObjectType();
-
- /**
- * Returns the OpenCL context of this shared object.
- */
- public CLGLContext getContext();
-
- /**
- * Returns the OpenGL context of this shared object.
- */
- public GLContext getGLContext();
-
-}