[ANDROID] added NVEventRepaint

This commit is contained in:
rachytski 2011-11-25 20:24:14 +04:00 committed by Alex Zolotarev
parent c82d5a76b3
commit 62bc545414
2 changed files with 12 additions and 0 deletions

View file

@ -456,6 +456,16 @@ bool NVEventReadyToRenderEGL(bool allocateIfNeeded)
return true;
}
bool NVEventRepaint()
{
NVEvent ev;
ev.m_type = NV_EVENT_USER;
ev.m_data.m_user.m_u0 = 1;
NVEventInsert(&ev);
return true;
}
///////////////////////////////////////////////////////////////////////////////
// Input event-related Java to Native callback functions

View file

@ -519,6 +519,8 @@ bool NVEventStatusEGLHasSurface();
*/
bool NVEventStatusEGLIsBound();
bool NVEventRepaint();
/** Returns the platform-specific handle to the application instance, if supported. This
function is, by definition platform-specific.