Example usage for org.lwjgl.opengl EXTFramebufferObject glIsFramebufferEXT

List of usage examples for org.lwjgl.opengl EXTFramebufferObject glIsFramebufferEXT

Introduction

In this page you can find the example usage for org.lwjgl.opengl EXTFramebufferObject glIsFramebufferEXT.

Prototype

@NativeType("GLboolean")
    public static native boolean glIsFramebufferEXT(@NativeType("GLuint") int framebuffer);

Source Link

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java

License:Apache License

public boolean glIsFramebuffer(int framebuffer) {
    return EXTFramebufferObject.glIsFramebufferEXT(framebuffer);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static boolean glIsFramebuffer(int framebuffer) {
    return EXTFramebufferObject.glIsFramebufferEXT(framebuffer);
}

From source file:org.oscim.gdx.LwjglGL20.java

License:Apache License

public boolean isFramebuffer(int framebuffer) {
    return EXTFramebufferObject.glIsFramebufferEXT(framebuffer);
}

From source file:playn.java.JavaGL20.java

License:Apache License

@Override
public boolean glIsFramebuffer(int framebuffer) {
    return EXTFramebufferObject.glIsFramebufferEXT(framebuffer);
}

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static boolean glIsFramebuffer(int a) {
    return EXTFramebufferObject.glIsFramebufferEXT(a);
}