Package com.jogamp.opencl.gl
Interface CLGLObject
-
- All Known Implementing Classes:
CLGLBuffer
,CLGLImage2d
,CLGLTexture2d
,CLGLTexture3d
public interface CLGLObject
- Author:
- Michael Bien
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CLGLContext
getContext()
Returns the OpenCL context of this shared object.com.jogamp.opengl.GLContext
getGLContext()
Returns the OpenGL context of this shared object.int
getGLObjectID()
Returns the OpenGL object id of this shared object.CLMemory.GLObjectType
getGLObjectType()
Returns the OpenGL buffer type of this shared object.long
getID()
Returns the OpenCL object handle
-
-
-
Method Detail
-
getGLObjectID
int getGLObjectID()
Returns the OpenGL object id of this shared object.
-
getID
long getID()
Returns the OpenCL object handle
-
getGLObjectType
CLMemory.GLObjectType getGLObjectType()
Returns the OpenGL buffer type of this shared object.
-
getContext
CLGLContext getContext()
Returns the OpenCL context of this shared object.
-
getGLContext
com.jogamp.opengl.GLContext getGLContext()
Returns the OpenGL context of this shared object.
-
-