예제 #1
0
파일: gl1.c 프로젝트: leiradel/RetroArch
static void gl1_overlay_enable(void *data, bool state)
{
   gl1_t *gl           = (gl1_t*)data;

   if (!gl)
      return;

   gl->overlay_enable = state;

   if (gl->fullscreen)
      video_context_driver_show_mouse(&state);
}
예제 #2
0
파일: d3d.cpp 프로젝트: Ezio-PS/RetroArch
static void d3d_show_mouse(void *data, bool state)
{
   video_context_driver_show_mouse(&state);
}