blob: 312df80b1755e1d2bbd035f8450b6cf97d711f69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Created on Friday, February 26 2010
*/
package com.jogamp.opencl.gl;
/**
*
* @author Michael Bien
*/
interface CLGLTexture extends CLGLObject {
/**
* Returns the OpenGL texture target of this texture.
*/
public int getTextureTarget();
/**
* Returns the OpenGL mipmap level of this texture.
*/
public int getMipMapLevel();
}
|