Example usage for org.lwjgl.opengl GL11 glLighti

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

Introduction

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

Prototype

public static native void glLighti(@NativeType("GLenum") int light, @NativeType("GLenum") int pname,
        @NativeType("GLint") int param);

Source Link

Document

Sets the integer value of a light parameter.

Usage

From source file:net.smert.frameworkgl.opengl.OpenGL1.java

License:Apache License

public OpenGL1 light(int lightNumber, int light, int value) {
    GL11.glLighti(lightNumber, light, value);
    return this;
}

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

License:Open Source License

public static void glLighti(int a, int b, int c) {
    GL11.glLighti(a, b, c);
}