All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jtransc.media.lwjgl.LwglTemps Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.jtransc.media.lwjgl;

import java.nio.IntBuffer;

class LwglTemps {
	static private IntBuffer[] intTemps = new IntBuffer[]{IntBuffer.allocate(1), IntBuffer.allocate(1), IntBuffer.allocate(1), IntBuffer.allocate(1)};
	static IntBuffer intBuffer(int index) {
		intTemps[index].clear();
		return intTemps[index];
	}

	static int intValue(int index) {
		return intBuffer(index).get(0);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy