1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/OSBindings/Mac/Clock Signal/OpenGLView.m

28 lines
382 B
Mathematica
Raw Normal View History

//
// OpenGLView.m
// ElectrEm
//
// Created by Thomas Harte on 16/07/2015.
// Copyright © 2015 Thomas Harte. All rights reserved.
//
#import "OpenGLView.h"
@import CoreVideo;
@implementation CSOpenGLView {
CVDisplayLinkRef displayLink;
}
- (instancetype)initWithCoder:(nonnull NSCoder *)coder
{
self = [super initWithCoder:coder];
if(self)
{
}
return self;
}
@end