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