Example usage for org.lwjgl.opengl GL41 glScissorIndexed

List of usage examples for org.lwjgl.opengl GL41 glScissorIndexed

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL41 glScissorIndexed.

Prototype

public static void glScissorIndexed(@NativeType("GLuint") int index, @NativeType("GLint") int left,
        @NativeType("GLint") int bottom, @NativeType("GLsizei") int width, @NativeType("GLsizei") int height) 

Source Link

Document

Defines the scissor box for a specific viewport.

Usage

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

License:Open Source License

public static void glScissorIndexed(int a, int b, int c, int d, int e) {
    GL41.glScissorIndexed(a, b, c, d, e);
}