List of usage examples for org.lwjgl.opengl GL11 glMultMatrixf
public static void glMultMatrixf(@NativeType("GLfloat const *") float[] m)
From source file:go.graphics.swing.opengl.LWJGLDrawContext.java
License:Open Source License
@Override public void glMultMatrixf(float[] matrix) { GL11.glMultMatrixf(matrix); }
From source file:net.smert.frameworkgl.opengl.OpenGL1.java
License:Apache License
public OpenGL1 multiplyMatrix(FloatBuffer matrix) { GL11.glMultMatrixf(matrix); return this; }