mirror of
https://github.com/opencv/opencv.git
synced 2024-12-05 01:39:13 +08:00
27 lines
671 B
C
27 lines
671 B
C
|
#include <jni.h>
|
||
|
|
||
|
int initGL();
|
||
|
void closeGL();
|
||
|
void changeSize(int width, int height);
|
||
|
void drawFrame();
|
||
|
|
||
|
JNIEXPORT jint JNICALL Java_org_opencv_samples_tutorial4_NativeGLRenderer_initGL(JNIEnv * env, jclass cls)
|
||
|
{
|
||
|
return initGL();
|
||
|
}
|
||
|
|
||
|
JNIEXPORT void JNICALL Java_org_opencv_samples_tutorial4_NativeGLRenderer_closeGL(JNIEnv * env, jclass cls)
|
||
|
{
|
||
|
closeGL();
|
||
|
}
|
||
|
|
||
|
JNIEXPORT void JNICALL Java_org_opencv_samples_tutorial4_NativeGLRenderer_changeSize(JNIEnv * env, jclass cls, jint width, jint height)
|
||
|
{
|
||
|
changeSize(width, height);
|
||
|
}
|
||
|
|
||
|
JNIEXPORT void JNICALL Java_org_opencv_samples_tutorial4_NativeGLRenderer_drawFrame(JNIEnv * env, jclass cls)
|
||
|
{
|
||
|
drawFrame();
|
||
|
}
|