Example usage for org.lwjgl.opengl GL11 glLightModelfv

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

Introduction

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

Prototype

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

Source Link

Document

Array version of: #glLightModelfv LightModelfv

Usage

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

License:Apache License

public OpenGL1 lightModel(int lightModel, FloatBuffer vector) {
    GL11.glLightModelfv(lightModel, vector);
    return this;
}