*** empty log message ***

This commit is contained in:
Elias Naur 2003-03-06 17:52:58 +00:00
parent ccba1c3f79
commit 66b0bfb18f
1 changed files with 4 additions and 3 deletions

View File

@ -3890,8 +3890,9 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_getCompressedTexImage
* Signature: (IIII)V * Signature: (IIII)V
*/ */
JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_multiDrawArrays JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_multiDrawArrays
(JNIEnv *, jobject, jint mode, jint first, jint count, jint primcount) { (JNIEnv *env, jobject obj, jint mode, jint first, jint count, jint primcount) {
glMultiDrawArrays(mode, (GLint *)first, (GLsizei *)count, primcount); glMultiDrawArrays(mode, (GLint *)first, (GLsizei *)count, primcount);
CHECK_GL_ERROR
} }
/* /*
@ -3900,11 +3901,11 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_multiDrawArrays
* Signature: (IIIII)V * Signature: (IIIII)V
*/ */
JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_multiDrawElements JNIEXPORT void JNICALL Java_org_lwjgl_opengl_CoreGL_multiDrawElements
(JNIEnv *, jobject, jint mode, jint count, jint type, jint indices, jint primcount) { (JNIEnv *env, jobject obj, jint mode, jint count, jint type, jint indices, jint primcount) {
glMultiDrawElements(mode, (GLsizei *)count, type, (const void **)indices, primcount); glMultiDrawElements(mode, (GLsizei *)count, type, (const void **)indices, primcount);
CHECK_GL_ERROR
} }
/* /*
* Class: org_lwjgl_opengl_CoreGL * Class: org_lwjgl_opengl_CoreGL
* Method: multiTexCoord1d * Method: multiTexCoord1d