Example usage for org.lwjgl.opengl EXTFramebufferObject glGetFramebufferAttachmentParameteriEXT

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

Introduction

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

Prototype

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

Source Link

Usage

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

License:Open Source License

public static int glGetFramebufferAttachmentParameteri(int a, int b, int c) {

    return EXTFramebufferObject.glGetFramebufferAttachmentParameteriEXT(a, b, c);
}