66c9582d1b
Set pointer to root view in window (for SampleApp) Set up the correct function pointer for GL multisampling Remove use of SkBitmap::setConfig() Remove incomplete iOS implementation of SkFILE (use SkOSFile for now) R=caryclark@google.com, reed@google.com, bsalomon@google.com, tfarina@chromium.org Author: jvanverth@google.com Review URL: https://codereview.chromium.org/322403007
23 lines
484 B
Plaintext
23 lines
484 B
Plaintext
#import "AppDelegate_iPad.h"
|
|
|
|
@implementation AppDelegate_iPad
|
|
|
|
@synthesize window, splitViewController;
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
[window addSubview:[splitViewController view]];
|
|
[window makeKeyAndVisible];
|
|
|
|
self.window.rootViewController = splitViewController;
|
|
|
|
return YES;
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[window release];
|
|
[splitViewController release];
|
|
[super dealloc];
|
|
}
|
|
|
|
@end
|