mirror of https://github.com/bsnes-emu/bsnes.git
8 lines
335 B
Objective-C
8 lines
335 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "GBView.h"
|
|
|
|
@interface GBGLShader : NSObject
|
|
- (instancetype)initWithName:(NSString *) shaderName;
|
|
- (void) renderBitmap: (void *)bitmap previous:(void*) previous sized:(NSSize)srcSize inSize:(NSSize)dstSize scale: (double) scale withBlendingMode: (GB_frame_blending_mode_t)blendingMode;
|
|
@end
|