From 918af28c2bdfd3d294b64699603efe97536af48e Mon Sep 17 00:00:00 2001 From: Caspian Rychlik-Prince Date: Sat, 24 Aug 2002 09:32:01 +0000 Subject: [PATCH] New math code --- src/native/common/org_lwjgl_Math.h | 109 ------------------ ...rg_lwjgl_Math_MatrixOpAdd_MatrixOpDirect.h | 21 ++++ .../org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe.h | 21 ++++ ...g_lwjgl_Math_MatrixOpCopy_MatrixOpDirect.h | 21 ++++ ...org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe.h | 21 ++++ ...lwjgl_Math_MatrixOpInvert_MatrixOpDirect.h | 21 ++++ ...g_lwjgl_Math_MatrixOpInvert_MatrixOpSafe.h | 21 ++++ ...jgl_Math_MatrixOpMultiply_MatrixOpDirect.h | 21 ++++ ...lwjgl_Math_MatrixOpMultiply_MatrixOpSafe.h | 21 ++++ ...lwjgl_Math_MatrixOpNegate_MatrixOpDirect.h | 21 ++++ ...g_lwjgl_Math_MatrixOpNegate_MatrixOpSafe.h | 21 ++++ ...gl_Math_MatrixOpNormalise_MatrixOpDirect.h | 21 ++++ ...wjgl_Math_MatrixOpNormalise_MatrixOpSafe.h | 21 ++++ ...jgl_Math_MatrixOpSubtract_MatrixOpDirect.h | 21 ++++ ...lwjgl_Math_MatrixOpSubtract_MatrixOpSafe.h | 21 ++++ 15 files changed, 294 insertions(+), 109 deletions(-) delete mode 100644 src/native/common/org_lwjgl_Math.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect.h create mode 100644 src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe.h diff --git a/src/native/common/org_lwjgl_Math.h b/src/native/common/org_lwjgl_Math.h deleted file mode 100644 index 97640005..00000000 --- a/src/native/common/org_lwjgl_Math.h +++ /dev/null @@ -1,109 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ -#include -/* Header for class org_lwjgl_Math */ - -#ifndef _Included_org_lwjgl_Math -#define _Included_org_lwjgl_Math -#ifdef __cplusplus -extern "C" { -#endif -#undef org_lwjgl_Math_PI -#define org_lwjgl_Math_PI 3.1415927f -#undef org_lwjgl_Math_MATRIXOP_NOOP -#define org_lwjgl_Math_MATRIXOP_NOOP 0L -#undef org_lwjgl_Math_MATRIXOP_NEGATE -#define org_lwjgl_Math_MATRIXOP_NEGATE 1L -#undef org_lwjgl_Math_MATRIXOP_NORMALIZE -#define org_lwjgl_Math_MATRIXOP_NORMALIZE 2L -#undef org_lwjgl_Math_MATRIXOP_INVERT -#define org_lwjgl_Math_MATRIXOP_INVERT 3L -#undef org_lwjgl_Math_MATRIXOP_MULTIPLY -#define org_lwjgl_Math_MATRIXOP_MULTIPLY 4L -#undef org_lwjgl_Math_MATRIXOP_ADD -#define org_lwjgl_Math_MATRIXOP_ADD 5L -#undef org_lwjgl_Math_MATRIXOP_SUBTRACT -#define org_lwjgl_Math_MATRIXOP_SUBTRACT 6L -/* - * Class: org_lwjgl_Math - * Method: random - * Signature: ()F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_random - (JNIEnv *, jclass); - -/* - * Class: org_lwjgl_Math - * Method: sin - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_sin - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: cos - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_cos - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: tan - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_tan - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: asin - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_asin - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: acos - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_acos - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: atan - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_atan - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: sqrt - * Signature: (F)F - */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_Math_sqrt - (JNIEnv *, jclass, jfloat); - -/* - * Class: org_lwjgl_Math - * Method: matrixOp - * Signature: (IIIIIIZIIZ)V - */ -JNIEXPORT void JNICALL Java_org_lwjgl_Math_matrixOp__IIIIIIZIIZ - (JNIEnv *, jclass, jint, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); - -/* - * Class: org_lwjgl_Math - * Method: matrixOp - * Signature: (IIIIIZIIIIZIIZ)V - */ -JNIEXPORT void JNICALL Java_org_lwjgl_Math_matrixOp__IIIIIZIIIIZIIZ - (JNIEnv *, jclass, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jboolean, jint, jint, jboolean); - -#ifdef __cplusplus -} -#endif -#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect.h new file mode 100644 index 00000000..081ceffb --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpAdd_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpAdd_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe.h new file mode 100644 index 00000000..1dfc8073 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpAdd_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpAdd_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect.h new file mode 100644 index 00000000..c5f55bfb --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpCopy_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpCopy_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe.h new file mode 100644 index 00000000..d3ca1290 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpCopy_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpCopy_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect.h new file mode 100644 index 00000000..cfb49963 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpInvert_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpInvert_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe.h new file mode 100644 index 00000000..4186d991 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpInvert_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpInvert_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect.h new file mode 100644 index 00000000..db309049 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpMultiply_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpMultiply_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe.h new file mode 100644 index 00000000..496719b6 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpMultiply_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpMultiply_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect.h new file mode 100644 index 00000000..8dd1d7b5 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpNegate_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpNegate_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe.h new file mode 100644 index 00000000..79280a63 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpNegate_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpNegate_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect.h new file mode 100644 index 00000000..b3e78074 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpNormalise_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpNormalise_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe.h new file mode 100644 index 00000000..a71ecb76 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpNormalise_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpNormalise_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect.h b/src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect.h new file mode 100644 index 00000000..04d3ff01 --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect +#define _Included_org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpSubtract_MatrixOpDirect + * Method: execute + * Signature: (IIIIIZIIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpSubtract_00024MatrixOpDirect_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif diff --git a/src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe.h b/src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe.h new file mode 100644 index 00000000..5bbcbabd --- /dev/null +++ b/src/native/common/org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe.h @@ -0,0 +1,21 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ +#include +/* Header for class org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe */ + +#ifndef _Included_org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe +#define _Included_org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe +#ifdef __cplusplus +extern "C" { +#endif +/* + * Class: org_lwjgl_Math_MatrixOpSubtract_MatrixOpSafe + * Method: execute + * Signature: (IIIIIZIIIIIZIIZ)V + */ +JNIEXPORT void JNICALL Java_org_lwjgl_Math_00024MatrixOpSubtract_00024MatrixOpSafe_execute + (JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jint, jint, jint, jint, jint, jboolean, jint, jint, jboolean); + +#ifdef __cplusplus +} +#endif +#endif