mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Create video_driver_suppress_screensaver
This commit is contained in:
parent
5112a6883e
commit
c5cdd729db
@ -568,9 +568,7 @@ void init_video(void)
|
|||||||
video_driver_set_rotation(
|
video_driver_set_rotation(
|
||||||
(settings->video.rotation + global->system.rotation) % 4);
|
(settings->video.rotation + global->system.rotation) % 4);
|
||||||
|
|
||||||
if (driver->video->suppress_screensaver)
|
video_driver_suppress_screensaver(settings->ui.suspend_screensaver_enable);
|
||||||
driver->video->suppress_screensaver(driver->video_data,
|
|
||||||
settings->ui.suspend_screensaver_enable);
|
|
||||||
|
|
||||||
if (!driver->input)
|
if (!driver->input)
|
||||||
init_video_input(tmp);
|
init_video_input(tmp);
|
||||||
@ -590,6 +588,14 @@ void init_video(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool video_driver_suppress_screensaver(bool enable)
|
||||||
|
{
|
||||||
|
driver_t *driver = driver_get_ptr();
|
||||||
|
const video_driver_t *video = video_driver_ctx_get_ptr();
|
||||||
|
|
||||||
|
return video->suppress_screensaver(driver->video_data, enable);
|
||||||
|
}
|
||||||
|
|
||||||
bool video_driver_has_windowed(void)
|
bool video_driver_has_windowed(void)
|
||||||
{
|
{
|
||||||
driver_t *driver = driver_get_ptr();
|
driver_t *driver = driver_get_ptr();
|
||||||
|
@ -331,6 +331,8 @@ void video_driver_get_video_output_prev(void);
|
|||||||
bool video_driver_frame(const void *frame, unsigned width,
|
bool video_driver_frame(const void *frame, unsigned width,
|
||||||
unsigned height, unsigned pitch, const char *msg);
|
unsigned height, unsigned pitch, const char *msg);
|
||||||
|
|
||||||
|
bool video_driver_suppress_screensaver(bool enable);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user