testing iOS multithread rendering

This commit is contained in:
2019-03-01 10:07:54 +01:00
parent 44ca908c6d
commit 8cd02787b3
4 changed files with 67 additions and 52 deletions

View File

@@ -10,14 +10,17 @@
#import <GLKit/GLKit.h>
#import "AppDelegate.h"
@interface GameViewController : GLKViewController<
@interface GameView : GLKView
@end
@interface GameViewController : UIViewController<
UIKeyInput,
UIImagePickerControllerDelegate,
UINavigationControllerDelegate,
UIDocumentInteractionControllerDelegate
>
{
@public GLKView* glview;
@public GameView* glview;
}
- (void)display_file:(std::string)filename;
- (void)reset_touch;