mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Show root view controller on external display
This commit is contained in:
parent
e5f1598132
commit
ccfbc5fcd0
@ -7,6 +7,7 @@
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||||
|
||||
@property (strong, nonatomic) UIWindow *window;
|
||||
@property (strong, nonatomic) UIScreen *screen;
|
||||
|
||||
@property (strong, nonatomic) ViewController *viewController;
|
||||
|
||||
|
@ -72,7 +72,18 @@
|
||||
}
|
||||
|
||||
-(BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||||
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
||||
|
||||
[[NSNotificationCenter defaultCenter] addObserverForName:UIScreenDidConnectNotification object:nil queue:nil usingBlock:^(NSNotification * _Nonnull notification) {
|
||||
UIScreen* screen = (UIScreen*)notification.object;
|
||||
self.screen = screen;
|
||||
|
||||
NSLog(@"Display connected: %@", screen.debugDescription);
|
||||
UIScreenMode* mode = screen.availableModes[screen.availableModes.count - 1];
|
||||
[screen setCurrentMode:mode];
|
||||
[screen setOverscanCompensation:UIScreenOverscanCompensationNone];
|
||||
|
||||
self.window = [[UIWindow alloc] initWithFrame:[screen bounds]];
|
||||
[self.window setScreen:screen];
|
||||
self.viewController = [[ViewController alloc] init];
|
||||
|
||||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleAudioSessionInterruption:) name:AVAudioSessionInterruptionNotification object:[AVAudioSession sharedInstance]];
|
||||
@ -81,6 +92,7 @@
|
||||
|
||||
self.window.rootViewController = self.viewController;
|
||||
[self.window makeKeyAndVisible];
|
||||
}];
|
||||
|
||||
return YES;
|
||||
}
|
||||
|
@ -5,6 +5,7 @@
|
||||
// Modified by xSacha
|
||||
//
|
||||
|
||||
#import "AppDelegate.h"
|
||||
#import "ViewController.h"
|
||||
#import "SubtleVolume.h"
|
||||
#import <GLKit/GLKit.h>
|
||||
@ -144,7 +145,8 @@ static GraphicsContext *graphicsContext;
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
|
||||
self.view.frame = [[UIScreen mainScreen] bounds];
|
||||
UIScreen* screen = [(AppDelegate*)[UIApplication sharedApplication].delegate screen];
|
||||
self.view.frame = [screen bounds];
|
||||
self.view.multipleTouchEnabled = YES;
|
||||
self.context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES3];
|
||||
|
||||
@ -159,12 +161,13 @@ static GraphicsContext *graphicsContext;
|
||||
self.preferredFramesPerSecond = 60;
|
||||
|
||||
// Might be useful for a speed boot, sacrificing resolution:
|
||||
// view.contentScaleFactor = 1.0;
|
||||
view.contentScaleFactor = screen.scale;
|
||||
|
||||
float scale = [UIScreen mainScreen].scale;
|
||||
float scale = screen.scale;
|
||||
|
||||
if ([[UIScreen mainScreen] respondsToSelector:@selector(nativeScale)]) {
|
||||
scale = [UIScreen mainScreen].nativeScale;
|
||||
|
||||
if ([screen respondsToSelector:@selector(nativeScale)]) {
|
||||
scale = screen.nativeScale;
|
||||
}
|
||||
|
||||
CGSize size = [[UIApplication sharedApplication].delegate window].frame.size;
|
||||
@ -176,8 +179,8 @@ static GraphicsContext *graphicsContext;
|
||||
}
|
||||
|
||||
g_dpi = (IS_IPAD() ? 200.0f : 150.0f) * scale;
|
||||
g_dpi_scale_x = 240.0f / g_dpi;
|
||||
g_dpi_scale_y = 240.0f / g_dpi;
|
||||
g_dpi_scale_x = 1;//240.0f / g_dpi;
|
||||
g_dpi_scale_y = 1;//240.0f / g_dpi;
|
||||
g_dpi_scale_real_x = g_dpi_scale_x;
|
||||
g_dpi_scale_real_y = g_dpi_scale_y;
|
||||
pixel_xres = size.width * scale;
|
||||
|
Loading…
Reference in New Issue
Block a user