Example #1
0
void NanoVG::skewY( float angle )
{
    nvgSkewY( m_context(), angle );
}
JNIEXPORT void JNICALL Java_org_lwjgl_nanovg_NanoVG_nnvgSkewY(JNIEnv *__env, jclass clazz, jlong ctxAddress, jfloat angle) {
	NVGcontext *ctx = (NVGcontext *)(intptr_t)ctxAddress;
	UNUSED_PARAMS(__env, clazz)
	nvgSkewY(ctx, angle);
}
Example #3
0
void QNanoPainter::skewY(float angle)
{
    nvgSkewY(nvgCtx(), angle);
}
		void NVGRenderer::skewY(float rad)
		{
			nvgSkewY(m_context, rad);
		}
Example #5
0
JNIEXPORT void JNICALL Java_firststep_internal_NVG_skewY
  (JNIEnv *e, jclass c, jlong ctx, jfloat angle)
{
	nvgSkewY((NVGcontext*)ctx, angle);
}