Example usage for org.lwjgl.opengl EXTFramebufferObject glGetFramebufferAttachmentParameterivEXT

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

Introduction

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

Prototype

public static void glGetFramebufferAttachmentParameterivEXT(@NativeType("GLenum") int target,
        @NativeType("GLenum") int attachment, @NativeType("GLenum") int pname,
        @NativeType("GLint *") int[] params) 

Source Link

Document

Array version of: #glGetFramebufferAttachmentParameterivEXT GetFramebufferAttachmentParameterivEXT

Usage

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

License:Apache License

public void glGetFramebufferAttachmentParameteriv(int target, int attachment, int pname, IntBuffer params) {
    EXTFramebufferObject.glGetFramebufferAttachmentParameterivEXT(target, attachment, pname, params);
}