예제 #1
0
int retro_return(int just_flipping)
{
   flip_only = just_flipping;

   if (just_flipping)
   {
      emu_step_render();
   }

   return 0;
}
int retro_return(int just_flipping)
{
   vbo_disable();

   flip_only = just_flipping;

   if (just_flipping)
   {
#ifndef HAVE_SHARED_CONTEXT
      sglExit();
#endif

      emu_step_render();

#ifndef HAVE_SHARED_CONTEXT
      sglEnter();
#endif
   }

   stop = 1;
   return 0;
}