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