Java Code Examples for javax.microedition.khronos.opengles.GL11#GL_TEXTURE_2D

The following examples show how to use javax.microedition.khronos.opengles.GL11#GL_TEXTURE_2D . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RawTexture.java    From PhotoMovie with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 2
Source File: FboTexture.java    From PhotoMovie with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 3
Source File: UploadedTexture.java    From PhotoMovie with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 4
Source File: RawTexture.java    From android-openGL-canvas with Apache License 2.0 4 votes vote down vote up
public RawTexture(int width, int height, boolean opaque) {
    this(width, height, opaque, GL11.GL_TEXTURE_2D);
}
 
Example 5
Source File: UploadedTexture.java    From android-openGL-canvas with Apache License 2.0 4 votes vote down vote up
@Override
public int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 6
Source File: RawTexture.java    From Trebuchet with GNU General Public License v3.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 7
Source File: UploadedTexture.java    From Trebuchet with GNU General Public License v3.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 8
Source File: RawTexture.java    From TurboLauncher with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 9
Source File: UploadedTexture.java    From TurboLauncher with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 10
Source File: RawTexture.java    From LB-Launcher with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}
 
Example 11
Source File: UploadedTexture.java    From LB-Launcher with Apache License 2.0 4 votes vote down vote up
@Override
protected int getTarget() {
    return GL11.GL_TEXTURE_2D;
}