Example usage for org.lwjgl.opengl GL43 glGetInternalformati64

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

Introduction

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

Prototype

@NativeType("void")
public static long glGetInternalformati64(@NativeType("GLenum") int target,
        @NativeType("GLenum") int internalformat, @NativeType("GLenum") int pname) 

Source Link

Document

Retrieves information about implementation-dependent support for internal formats.

Usage

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

License:Open Source License

public static long glGetInternalformati64(int a, int b, int c) {
    return GL43.glGetInternalformati64(a, b, c);
}