Back to project page Gloomy-Dungeons-3D.
The source code is released under:
MIT License
If you think the Android project Gloomy-Dungeons-3D listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package zame.game; // w w w .j ava 2s. co m public class ZameJniRenderer { static { System.loadLibrary("zameJniRenderer"); } public static native void renderTriangles(float[] vertexBuffer, float[] colorsBuffer, float[] textureBuffer, short[] indicesBuffer, int indicesBufferPos); public static native void renderLines(float[] vertexBuffer, float[] colorsBuffer, int vertexCount); }