diff options
Diffstat (limited to 'src/com/mbien/opencl/CLGLTexture.java')
-rw-r--r-- | src/com/mbien/opencl/CLGLTexture.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/CLGLTexture.java b/src/com/mbien/opencl/CLGLTexture.java new file mode 100644 index 00000000..9290dc63 --- /dev/null +++ b/src/com/mbien/opencl/CLGLTexture.java @@ -0,0 +1,23 @@ +/* + * Created on Friday, February 26 2010 + */ + +package com.mbien.opencl; + +/** + * + * @author Michael Bien + */ +interface CLGLTexture { + + /** + * Returns the OpenGL texture target of this texture. + */ + public int getTextureTarget(); + + /** + * Returns the OpenGL mipmap level of this texture. + */ + public int getMipMapLevel(); + +} |