mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 17:46:34 +01:00
22 lines
238 B
C
22 lines
238 B
C
|
|
#include <pbd/misc.h>
|
||
|
|
|
||
|
|
#ifdef GTKOSX
|
||
|
|
#include <AppKit/AppKit.h>
|
||
|
|
#endif
|
||
|
|
|
||
|
|
void
|
||
|
|
disable_screen_updates ()
|
||
|
|
{
|
||
|
|
#ifdef GTKOSX
|
||
|
|
NSDisableScreenUpdates ();
|
||
|
|
#endif
|
||
|
|
}
|
||
|
|
|
||
|
|
void
|
||
|
|
enable_screen_updates ()
|
||
|
|
{
|
||
|
|
#ifdef GTKOSX
|
||
|
|
NSEnableScreenUpdates();
|
||
|
|
#endif
|
||
|
|
}
|