Example usage for org.lwjgl.opengl GL41 glViewportIndexedf

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

Introduction

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

Prototype

public static void glViewportIndexedf(@NativeType("GLuint") int index, @NativeType("GLfloat") float x,
        @NativeType("GLfloat") float y, @NativeType("GLfloat") float w, @NativeType("GLfloat") float h) 

Source Link

Document

Sets a specified viewport.

Usage

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

License:Open Source License

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