mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
18 lines
496 B
Objective-C
18 lines
496 B
Objective-C
// ViewControllerMetal
|
|
// Used by both Vulkan/MoltenVK and the future Metal backend.
|
|
|
|
#pragma once
|
|
#include "ViewControllerCommon.h"
|
|
|
|
#import "iCade/iCadeReaderView.h"
|
|
#import "CameraHelper.h"
|
|
#import "LocationHelper.h"
|
|
|
|
@interface PPSSPPViewControllerMetal : UIViewController<
|
|
iCadeEventDelegate, LocationHandlerDelegate, CameraFrameDelegate,
|
|
UIGestureRecognizerDelegate, UIKeyInput, PPSSPPViewController>
|
|
@end
|
|
|
|
/** The Metal-compatibile view. */
|
|
@interface PPSSPPMetalView : UIView
|
|
@end |