mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-23 19:24:46 +00:00
Merge branch 'refactor' of https://github.com/libretro/RetroArch into refactor
This commit is contained in:
commit
885f30b429
@ -971,18 +971,22 @@ void video_driver_cached_frame_get(const void **data, unsigned *width,
|
||||
|
||||
void video_driver_get_size(unsigned *width, unsigned *height)
|
||||
{
|
||||
video_driver_threaded_lock();
|
||||
if (width)
|
||||
*width = video_driver_width;
|
||||
if (height)
|
||||
*height = video_driver_height;
|
||||
video_driver_threaded_unlock();
|
||||
}
|
||||
|
||||
void video_driver_set_size(unsigned *width, unsigned *height)
|
||||
{
|
||||
video_driver_threaded_lock();
|
||||
if (width)
|
||||
video_driver_width = *width;
|
||||
if (height)
|
||||
video_driver_height = *height;
|
||||
video_driver_threaded_unlock();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user