Example usage for org.lwjgl.opengl GL11 glLightfv

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

Introduction

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

Prototype

public static void glLightfv(@NativeType("GLenum") int light, @NativeType("GLenum") int pname,
        @NativeType("GLfloat const *") float[] params) 

Source Link

Document

Array version of: #glLightfv Lightfv

Usage

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

License:Apache License

public OpenGL1 light(int lightNumber, int light, FloatBuffer vector) {
    GL11.glLightfv(lightNumber, light, vector);
    return this;
}