List of usage examples for org.lwjgl.opengl GL11 glLightModelfv
public static void glLightModelfv(@NativeType("GLenum") int pname, @NativeType("GLfloat const *") float[] params)
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; }