blob: 2f876952cbadb8b21c6d024d092396b0a419401b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:R. Belmont
//============================================================
//
// oglview.h - our OpenGL view
//
// Mac OSD by R. Belmont
//
//============================================================
#define GL_SILENCE_DEPRECATION (1)
#import <Cocoa/Cocoa.h>
@interface MAMEGLView : NSOpenGLView
{
}
@end
|