Example usage for org.lwjgl.opengl EXTFramebufferObject glFramebufferTexture3DEXT

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

Introduction

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

Prototype

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

Source Link

Usage

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

License:Open Source License

public static void glFramebufferTexture3D(int a, int b, int c, int d, int e, int f) {
    EXTFramebufferObject.glFramebufferTexture3DEXT(a, b, c, d, e, f);
}