Example usage for org.lwjgl.opengl GL40 glPatchParameteri

List of usage examples for org.lwjgl.opengl GL40 glPatchParameteri

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glPatchParameteri.

Prototype

public static void glPatchParameteri(@NativeType("GLenum") int pname, @NativeType("GLint") int value) 

Source Link

Document

Specifies the integer value of the specified parameter for patch primitives.

Usage

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

License:Open Source License

public static void glPatchParameteri(int a, int b) {
    GL40.glPatchParameteri(a, b);
}