Skip to content

Commit

Permalink
macOS: removed deprecated UpdateSystemActivity() call.
Browse files Browse the repository at this point in the history
The non-deprecated approach (IOPMAssertion) already exists in SDL, and is
available in Mac OS X 10.6 and later (although it was incorrectly listed as
10.7 and later in SDL). Since SDL now requires 10.6 or later, this is no
longer conditionally used.
  • Loading branch information
icculus committed Nov 25, 2016
1 parent fb5fd67 commit d1c35fe
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 19 deletions.
15 changes: 0 additions & 15 deletions src/video/cocoa/SDL_cocoaevents.m
Expand Up @@ -394,17 +394,6 @@ - (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filenam
Cocoa_PumpEvents(_THIS)
{ @autoreleasepool
{
/* Update activity every 30 seconds to prevent screensaver */
SDL_VideoData *data = (SDL_VideoData *)_this->driverdata;
if (_this->suspend_screensaver && !data->screensaver_use_iopm) {
Uint32 now = SDL_GetTicks();
if (!data->screensaver_activity ||
SDL_TICKS_PASSED(now, data->screensaver_activity + 30000)) {
UpdateSystemActivity(UsrActivity);
data->screensaver_activity = now;
}
}

for ( ; ; ) {
NSEvent *event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:[NSDate distantPast] inMode:NSDefaultRunLoopMode dequeue:YES ];
if ( event == nil ) {
Expand All @@ -426,10 +415,6 @@ - (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filenam
{
SDL_VideoData *data = (SDL_VideoData *)_this->driverdata;

if (!data->screensaver_use_iopm) {
return;
}

if (data->screensaver_assertion) {
IOPMAssertionRelease(data->screensaver_assertion);
data->screensaver_assertion = 0;
Expand Down
1 change: 0 additions & 1 deletion src/video/cocoa/SDL_cocoavideo.h
Expand Up @@ -52,7 +52,6 @@ typedef struct SDL_VideoData
SDLTranslatorResponder *fieldEdit;
NSInteger clipboard_count;
Uint32 screensaver_activity;
BOOL screensaver_use_iopm;
IOPMAssertionID screensaver_assertion;

} SDL_VideoData;
Expand Down
3 changes: 0 additions & 3 deletions src/video/cocoa/SDL_cocoavideo.m
Expand Up @@ -152,9 +152,6 @@

data->allow_spaces = ((floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6) && SDL_GetHintBoolean(SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES, SDL_TRUE));

/* The IOPM assertion API can disable the screensaver as of 10.7. */
data->screensaver_use_iopm = floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6;

return 0;
}

Expand Down

0 comments on commit d1c35fe

Please sign in to comment.