Example #1
0
void NanoVG::cancelFrame()
{
    nvgCancelFrame( m_context() );
}
		void NVGRenderer::cancelFrame()
		{
			nvgCancelFrame(m_context);
			m_inFrame = false;
		}
JNIEXPORT void JNICALL Java_org_lwjgl_nanovg_NanoVG_nnvgCancelFrame(JNIEnv *__env, jclass clazz, jlong ctxAddress) {
	NVGcontext *ctx = (NVGcontext *)(intptr_t)ctxAddress;
	UNUSED_PARAMS(__env, clazz)
	nvgCancelFrame(ctx);
}
Example #4
0
JNIEXPORT void JNICALL Java_firststep_internal_NVG_cancelFrame
  (JNIEnv *e, jclass c, jlong ctx)
{
	nvgCancelFrame((NVGcontext*)ctx);
}