aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/gl/CLGLTexture.java
blob: 49fe4cb20b6bbb3f80565cc60167a366c3359b0e (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.mbien.opencl.gl;

/**
 *
 * @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();

}