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

org.lwjgl.opengles.EXTMultiDrawArrays Maven / Gradle / Ivy

There is a newer version: 2.9.3
Show newest version
/* MACHINE GENERATED FILE, DO NOT EDIT */

package org.lwjgl.opengles;

import org.lwjgl.*;
import java.nio.*;

public final class EXTMultiDrawArrays {

	private EXTMultiDrawArrays() {}

	static native void initNativeStubs() throws LWJGLException;

	public static void glMultiDrawArraysEXT(int mode, IntBuffer first, IntBuffer count) {
		BufferChecks.checkDirect(first);
		BufferChecks.checkBuffer(count, first.remaining());
		nglMultiDrawArraysEXT(mode, MemoryUtil.getAddress(first), MemoryUtil.getAddress(count), first.remaining());
	}
	static native void nglMultiDrawArraysEXT(int mode, long first, long count, int first_primcount);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy