Example usage for org.lwjgl.opengl GL32 glProvokingVertex

List of usage examples for org.lwjgl.opengl GL32 glProvokingVertex

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL32 glProvokingVertex.

Prototype

public static void glProvokingVertex(@NativeType("GLenum") int mode) 

Source Link

Document

Specifies the vertex to be used as the source of data for flat shaded varyings.

Usage

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

License:Open Source License

public static void glProvokingVertex(int a) {
    GL32.glProvokingVertex(a);
}