SameBoy/AppleCommon/GBViewMetal.h

12 lines
227 B
C
Raw Normal View History

2023-01-13 19:57:57 +00:00
#include <TargetConditionals.h>
#import <MetalKit/MetalKit.h>
#if TARGET_OS_IPHONE
#import "../iOS/GBView.h"
#else
#import "../Cocoa/GBView.h"
#endif
@interface GBViewMetal : GBView<MTKViewDelegate>
+ (bool) isSupported;
@end