Example usage for org.lwjgl.opengl GL11 glGetPolygonStipple

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

Introduction

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

Prototype

public static void glGetPolygonStipple(@NativeType("void *") long pattern) 

Source Link

Document

Obtains the polygon stipple.

Usage

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

License:Open Source License

public static void glGetPolygonStipple(long a) {
    GL11.glGetPolygonStipple(a);
}

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

License:Open Source License

public static void glGetPolygonStipple(ByteBuffer a) {
    GL11.glGetPolygonStipple(a);
}