2016-03-30 20:07:55 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2016-04-28 20:07:05 +00:00
|
|
|
#import "GBShader.h"
|
2016-03-30 20:07:55 +00:00
|
|
|
#include "gb.h"
|
|
|
|
|
|
|
|
@interface GBView : NSOpenGLView
|
|
|
|
- (void) flip;
|
|
|
|
- (uint32_t *) pixels;
|
|
|
|
@property GB_gameboy_t *gb;
|
2016-06-08 21:06:55 +00:00
|
|
|
@property (nonatomic) BOOL shouldBlendFrameWithPrevious;
|
2016-04-28 20:07:05 +00:00
|
|
|
@property GBShader *shader;
|
2016-03-30 20:07:55 +00:00
|
|
|
@end
|