List of usage examples for org.lwjgl.opengl EXTFramebufferObject glFramebufferTexture3DEXT
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);
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); }