We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f043d commit 65a3394Copy full SHA for 65a3394
cocos2d-ui-tests/ios/AppController.m
@@ -47,6 +47,16 @@ - (NSDictionary*)iosConfig
47
};
48
}
49
50
+- (NSDictionary*)macConfig
51
+{
52
+ NSMutableDictionary *config = [super macConfig];
53
+ config[CCSetupDepthFormat] = @GL_DEPTH24_STENCIL8;
54
+ config[CCSetupTabletScale2X] = @YES;
55
+ config[CCSetupShowDebugStats] = @(getenv("SHOW_DEBUG_STATS") != nil);
56
+
57
+ return config;
58
+}
59
60
- (void)configureFileUtilsSearchPathAndRegisterSpriteSheets
61
{
62
[[NSUserDefaults standardUserDefaults] setValue:nil forKey:PACKAGE_STORAGE_USERDEFAULTS_KEY];
0 commit comments