CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/ViewControllerMetal.h
Views: 1401
1
// ViewControllerMetal
2
// Used by both Vulkan/MoltenVK and the future Metal backend.
3
4
#pragma once
5
#include "ViewControllerCommon.h"
6
7
#import "iCade/iCadeReaderView.h"
8
#import "CameraHelper.h"
9
#import "LocationHelper.h"
10
11
@interface PPSSPPViewControllerMetal : UIViewController<
12
iCadeEventDelegate, LocationHandlerDelegate, CameraFrameDelegate,
13
UIGestureRecognizerDelegate, UIKeyInput, PPSSPPViewController>
14
@end
15
16
/** The Metal-compatibile view. */
17
@interface PPSSPPMetalView : UIView
18
@end
19