Example usage for org.lwjgl.opengl GL43 glGetFramebufferParameteri

List of usage examples for org.lwjgl.opengl GL43 glGetFramebufferParameteri

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glGetFramebufferParameteri.

Prototype

@NativeType("void")
public static int glGetFramebufferParameteri(@NativeType("GLenum") int target,
        @NativeType("GLenum") int pname) 

Source Link

Document

Retrieves a named parameter from a framebuffer.

Usage

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

License:Open Source License

public static int glGetFramebufferParameteri(int a, int b) {
    return GL43.glGetFramebufferParameteri(a, b);
}