Example usage for org.lwjgl.opengl GL30 glIsFramebuffer

List of usage examples for org.lwjgl.opengl GL30 glIsFramebuffer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glIsFramebuffer.

Prototype

@NativeType("GLboolean")
public static boolean glIsFramebuffer(@NativeType("GLuint") int framebuffer) 

Source Link

Document

Determines if a name corresponds to a framebuffer object.

Usage

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

License:Apache License

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

From source file:processing.lwjgl.PLWJGL.java

License:Open Source License

public boolean isFramebuffer(int framebuffer) {
    return GL30.glIsFramebuffer(framebuffer);
}

From source file:processing.opengl.PLWJGL.java

License:Open Source License

@Override
public boolean isFramebuffer(int framebuffer) {
    return GL30.glIsFramebuffer(framebuffer);
}