Skip to content

Instantly share code, notes, and snippets.

@Shtille
Created July 9, 2016 14:33
Show Gist options
  • Save Shtille/9e2f5cf0f68ec2fea94a290c71793edd to your computer and use it in GitHub Desktop.
Save Shtille/9e2f5cf0f68ec2fea94a290c71793edd to your computer and use it in GitHub Desktop.
Creating fullscreen window, first way
// Enable fullscreen ability
NSWindowCollectionBehavior behavior = [g_window.object collectionBehavior];
behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
[g_window.object setCollectionBehavior:behavior];
// Enable/disable fullscreen
[g_window.object toggleFullScreen:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment