List of usage examples for org.lwjgl.opengl GL11 glEdgeFlagPointer
public static void glEdgeFlagPointer(@NativeType("GLsizei") int stride, @NativeType("GLboolean const *") long pointer)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glEdgeFlagPointer(int a, ByteBuffer b) { GL11.glEdgeFlagPointer(a, b); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glEdgeFlagPointer(int a, long b) { GL11.glEdgeFlagPointer(a, b); }