webrtc/modules/video_capture/main/test/testAPI/cocoa_renderer.mm

20 lines
420 B
Plaintext

//
// CocoaRenderer.mm
// testCocoaCommandLine
#import <Cocoa/Cocoa.h>
#import <AppKit/AppKit.h>
#import "cocoa_renderer.h"
@implementation CocoaRenderer
@synthesize _nsOpenGLContext;
@synthesize screen = _screen;
- (void)initCocoaRenderer:(NSOpenGLPixelFormat*)fmt{
self = [super initWithFrame:[self frame] pixelFormat:[fmt autorelease]];
if (self != nil)
{
_nsOpenGLContext = [self openGLContext];
}
}
@end