Example usage for org.lwjgl.opengl GL11 glEdgeFlagPointer

List of usage examples for org.lwjgl.opengl GL11 glEdgeFlagPointer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glEdgeFlagPointer.

Prototype

public static void glEdgeFlagPointer(@NativeType("GLsizei") int stride,
        @NativeType("GLboolean const *") long pointer) 

Source Link

Document

Specifies the location and organization of an edge flag array.

Usage

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);
}