Esempio n. 1
0
void appRender(long tick, int width, int height)
{
    if (!gAppAlive) {
        return;
    }
    video_render(tick, width, height);
}
Esempio n. 2
0
void appRender(long tick, int width, int height)
{
	if (!gAppAlive) {
		return;
	}
   screen_width = width;
   screen_height = height;
	video_render(tick, screen_width, screen_height);
}