List of usage examples for org.lwjgl.opengl GL11 glIsTexture
@NativeType("GLboolean") public static boolean glIsTexture(@NativeType("GLuint") int texture)
From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java
License:Apache License
public boolean glIsTexture(int texture) { return GL11.glIsTexture(texture); }
From source file:io.root.gfx.glutils.GL.java
License:Apache License
public static boolean glIsTexture(int texture) { return GL11.glIsTexture(texture); }
From source file:org.oscim.gdx.LwjglGL20.java
License:Apache License
public boolean isTexture(int texture) { return GL11.glIsTexture(texture); }
From source file:playn.java.JavaGL20.java
License:Apache License
@Override public boolean glIsTexture(int texture) { return GL11.glIsTexture(texture); }
From source file:processing.opengl.PLWJGL.java
License:Open Source License
@Override public boolean isTexture(int texture) { return GL11.glIsTexture(texture); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static boolean glIsTexture(int a) { return GL11.glIsTexture(a); }