Example usage for org.lwjgl.opengl EXTFramebufferObject glFramebufferTexture1DEXT

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

Introduction

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

Prototype

public static native void glFramebufferTexture1DEXT(@NativeType("GLenum") int target,
            @NativeType("GLenum") int attachment, @NativeType("GLenum") int textarget,
            @NativeType("GLuint") int texture, @NativeType("GLint") int level);

Source Link

Usage

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

License:Open Source License

public static void glFramebufferTexture1D(int a, int b, int c, int d, int e) {
    EXTFramebufferObject.glFramebufferTexture1DEXT(a, b, c, d, e);
}