Example usage for org.lwjgl.opengl GL11 glMultMatrixf

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

Introduction

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

Prototype

public static void glMultMatrixf(@NativeType("GLfloat const *") float[] m) 

Source Link

Document

Array version of: #glMultMatrixf MultMatrixf

Usage

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;
}