org.lwjgl.opengles.EXTDrawInstanced Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-opengles Show documentation
Show all versions of lwjgl-opengles Show documentation
A royalty-free, cross-platform API for full-function 2D and 3D graphics on embedded systems - including consoles, phones, appliances and vehicles.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opengles;
import java.nio.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Native bindings to the EXT_draw_instanced extension.
*
* This extension provides the means to render multiple instances of an object with a single draw call, and an "instance ID" variable which can be used by
* the vertex program to compute per-instance values, typically an object's transform.
*/
public class EXTDrawInstanced {
protected EXTDrawInstanced() {
throw new UnsupportedOperationException();
}
static boolean isAvailable(GLESCapabilities caps) {
return checkFunctions(
caps.glDrawArraysInstancedEXT, caps.glDrawElementsInstancedEXT
);
}
// --- [ glDrawArraysInstancedEXT ] ---
public static void glDrawArraysInstancedEXT(int mode, int start, int count, int primcount) {
long __functionAddress = GLES.getCapabilities().glDrawArraysInstancedEXT;
if ( CHECKS )
checkFunctionAddress(__functionAddress);
callV(__functionAddress, mode, start, count, primcount);
}
// --- [ glDrawElementsInstancedEXT ] ---
public static void nglDrawElementsInstancedEXT(int mode, int count, int type, long indices, int primcount) {
long __functionAddress = GLES.getCapabilities().glDrawElementsInstancedEXT;
if ( CHECKS )
checkFunctionAddress(__functionAddress);
callPV(__functionAddress, mode, count, type, indices, primcount);
}
public static void glDrawElementsInstancedEXT(int mode, int count, int type, long indices, int primcount) {
nglDrawElementsInstancedEXT(mode, count, type, indices, primcount);
}
public static void glDrawElementsInstancedEXT(int mode, int type, ByteBuffer indices, int primcount) {
nglDrawElementsInstancedEXT(mode, indices.remaining() >> GLESChecks.typeToByteShift(type), type, memAddress(indices), primcount);
}
public static void glDrawElementsInstancedEXT(int mode, ByteBuffer indices, int primcount) {
nglDrawElementsInstancedEXT(mode, indices.remaining(), GLES20.GL_UNSIGNED_BYTE, memAddress(indices), primcount);
}
public static void glDrawElementsInstancedEXT(int mode, ShortBuffer indices, int primcount) {
nglDrawElementsInstancedEXT(mode, indices.remaining(), GLES20.GL_UNSIGNED_SHORT, memAddress(indices), primcount);
}
public static void glDrawElementsInstancedEXT(int mode, IntBuffer indices, int primcount) {
nglDrawElementsInstancedEXT(mode, indices.remaining(), GLES20.GL_UNSIGNED_INT, memAddress(indices), primcount);
}
}