JNIEXPORT void JNICALL Java_com_example_ytshen_opengles_RendererWrapper_on_1draw_1frame
    (JNIEnv *env, jclass clazz)
{
  UNUSED(env);
  UNUSED(clazz);
  on_draw_frame();
}
Esempio n. 2
0
/*
 * Class:     com_example_jligameengine_GameLibJNIWrapper
 * Method:    on_draw_frame
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_com_example_jligameengine_GameLibJNIWrapper_on_1draw_1frame
(JNIEnv * env, jclass cls) {
	UNUSED(env);
	UNUSED(cls);
	on_draw_frame();
}
Esempio n. 3
0
JNIEXPORT void JNICALL Java_com_learnopengles_airhockey_RendererWrapper_on_1draw_1frame(JNIEnv* env, jclass cls) {
	UNUSED(env);
	UNUSED(cls);
	on_draw_frame();
}
Esempio n. 4
0
/*
 * Class:     net_bumblebit_grapefruit_app_JNIWrapper
 * Method:    on_draw_frame
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_net_bumblebit_grapefruit_app_JNIWrapper_on_1draw_1frame
  (JNIEnv * env, jclass cls) {
    on_draw_frame();
}
Esempio n. 5
0
JNIEXPORT void JNICALL jni_on_draw_frame(JNIEnv * /*env*/, jclass /*cls*/)
{
    //DLOG();
	on_draw_frame();
}
Esempio n. 6
0
JNIEXPORT void JNICALL Java_com_learnopengles_airhockey_GameLibJNIWrapper_on_1draw_1frame
    (JNIEnv * env, jclass cls) {
    on_draw_frame();
}
Esempio n. 7
0
JNIEXPORT void JNICALL Java_com_example_imageviewer5000_ImageViewer5000Renderer_on_1draw_1frame
    (JNIEnv * env, jclass cls, jfloat az, jfloat pch, jfloat rll) {
    on_draw_frame(az, pch, rll);
}
Esempio n. 8
0
JNIEXPORT void JNICALL Java_com_example_matias_ndkfractalviewer_FractalLibJNIWrapper_on_1draw_1frame
  (JNIEnv * env, jclass cls) {
  on_draw_frame();
}
Esempio n. 9
0
/*
 * Class:     com_jazzros_ffmpegtest_RendererWrapper
 * Method:    on_draw_frame
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_com_jazzros_ffmpegtest_RendererWrapper_on_1draw_1frame (JNIEnv * env, jobject obj)
{
    on_draw_frame();
}