Searched refs:GL30 (Results 1 - 25 of 25) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/
H A DGdx.java20 import com.badlogic.gdx.graphics.GL30;
38 public static GL30 gl30;
H A DGraphics.java22 import com.badlogic.gdx.graphics.GL30;
35 * {@link Application} configuration, access to {@link GL20} and {@link GL30} are provided here.
125 /** Returns whether OpenGL ES 3.0 is available. If it is you can get an instance of {@link GL30} via {@link #getGL30()} to
135 /** @return the {@link GL30} instance or null if not supported */
136 public GL30 getGL30 ();
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
H A DLwjglGL30.java32 import org.lwjgl.opengl.GL30;
42 class LwjglGL30 extends LwjglGL20 implements com.badlogic.gdx.graphics.GL30 {
219 GL30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
224 GL30.glBindFramebuffer(target, framebuffer);
229 GL30.glBindRenderbuffer(target, renderbuffer);
234 return GL30.glCheckFramebufferStatus(target);
239 GL30.glDeleteFramebuffers(framebuffers);
244 GL30.glDeleteFramebuffers(framebuffer);
249 GL30.glDeleteRenderbuffers(renderbuffers);
254 GL30
[all...]
H A DLwjglGraphics.java37 import com.badlogic.gdx.graphics.GL30;
53 GL30 gl30;
238 int numExtensions = GL11.glGetInteger(GL30.GL_NUM_EXTENSIONS);
240 extensions.add(org.lwjgl.opengl.GL30.glGetStringi(GL20.GL_EXTENSIONS, i));
605 public GL30 getGL30 () {
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
H A DLwjgl3GL30.java32 import org.lwjgl.opengl.GL30;
42 class Lwjgl3GL30 extends Lwjgl3GL20 implements com.badlogic.gdx.graphics.GL30 {
221 GL30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
226 GL30.glBindFramebuffer(target, framebuffer);
231 GL30.glBindRenderbuffer(target, renderbuffer);
236 return GL30.glCheckFramebufferStatus(target);
241 GL30.glDeleteFramebuffers(framebuffers);
246 GL30.glDeleteFramebuffers(framebuffer);
251 GL30.glDeleteRenderbuffers(renderbuffers);
256 GL30
[all...]
H A DLwjgl3Graphics.java33 import com.badlogic.gdx.graphics.GL30;
42 private final GL30 gl30;
137 public GL30 getGL30() {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
H A DFileTextureArrayData.java21 import com.badlogic.gdx.graphics.GL30;
73 textureDatas[i].consumeCustomData(GL30.GL_TEXTURE_2D_ARRAY);
90 Gdx.gl30.glTexSubImage3D(GL30.GL_TEXTURE_2D_ARRAY, 0, 0, 0, i, pixmap.getWidth(), pixmap.getHeight(), 1, pixmap.getGLInternalFormat(), pixmap.getGLType(), pixmap.getPixels());
H A DVertexBufferObjectWithVAO.java9 import com.badlogic.gdx.graphics.GL30;
141 GL30 gl = Gdx.gl30;
231 GL30 gl = Gdx.gl30;
251 GL30 gl = Gdx.gl30;
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
H A DMultipleRenderTargetTest.java26 import com.badlogic.gdx.graphics.GL30;
261 quad.render(mrtSceneShader, GL30.GL_TRIANGLE_FAN);
498 GLOnlyTextureData data = new GLOnlyTextureData(width, height, 0, GL30.GL_DEPTH_COMPONENT32F, GL30.GL_DEPTH_COMPONENT,
499 GL30.GL_FLOAT);
532 Texture diffuse = createColorTexture(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest, GL30.GL_RGBA8,
533 GL30.GL_RGBA, GL30.GL_UNSIGNED_BYTE);
535 Texture normal = createColorTexture(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest, GL30.GL_RGB8,
536 GL30
[all...]
/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/mock/graphics/
H A DMockGraphics.java23 import com.badlogic.gdx.graphics.GL30;
50 public GL30 getGL30() {
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
H A DVertexBufferObjectWithVAO.java9 import com.badlogic.gdx.graphics.GL30;
137 GL30 gl = Gdx.gl30;
227 GL30 gl = Gdx.gl30;
247 GL30 gl = Gdx.gl30;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
H A DTextureArray.java57 super(GL30.GL_TEXTURE_2D_ARRAY, Gdx.gl.glGenTexture());
82 Gdx.gl30.glTexImage3D(GL30.GL_TEXTURE_2D_ARRAY, 0, data.getInternalFormat(), data.getWidth(), data.getHeight(), data.getDepth(), 0, data.getInternalFormat(), data.getGLType(), null);
H A DGL30.java25 public interface GL30 extends GL20 { interface in inherits:GL20
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/
H A DIOSGLES30.java19 import com.badlogic.gdx.graphics.GL30;
26 public class IOSGLES30 extends IOSGLES20 implements GL30 {
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
H A DIOSGLES30.java3 import com.badlogic.gdx.graphics.GL30;
10 public class IOSGLES30 extends IOSGLES20 implements GL30 {
H A DIOSGraphics.java48 import com.badlogic.gdx.graphics.GL30;
140 GL30 gl30;
545 public GL30 getGL30 () {
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
H A DGwtGraphics.java26 import com.badlogic.gdx.graphics.GL30;
482 public GL30 getGL30 () {
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
H A DIOSGraphics.java28 import com.badlogic.gdx.graphics.GL30;
62 GL30 gl30;
454 public GL30 getGL30 () {
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
H A DVBOWithVAOPerformanceTest.java21 import com.badlogic.gdx.graphics.GL30;
395 GL30 gl = Gdx.gl30;
461 GL30 gl = Gdx.gl30;
475 GL30 gl = Gdx.gl30;
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
H A DJglfwGraphics.java28 import com.badlogic.gdx.graphics.GL30;
461 public GL30 getGL30 () {
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
H A DAndroidGL30.java21 import com.badlogic.gdx.graphics.GL30;
23 public class AndroidGL30 extends AndroidGL20 implements GL30 {
H A DAndroidGraphics.java49 import com.badlogic.gdx.graphics.GL30;
81 GL30 gl30;
695 public GL30 getGL30 () {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/profiling/
H A DGL30Profiler.java25 import com.badlogic.gdx.graphics.GL30;
29 public class GL30Profiler extends GLProfiler implements GL30 {
31 public final GL30 gl30;
33 protected GL30Profiler (GL30 gl30) {
1212 // GL30 Unique
/external/libgdx/backends/gdx-backend-lwjgl/libs/
H A Dlwjgl.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/lwjgl/ org/lwjgl/input/ org/lwjgl/openal/ org/ ...
/external/libgdx/backends/gdx-backend-lwjgl3/libs/
H A Dlwjgl.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/lwjgl/ org/lwjgl/egl/ org/lwjgl/glfw/ org/ ...

Completed in 180 milliseconds