summaryrefslogtreecommitdiffstats
path: root/macosx/PictureGLView.h
blob: 06e5a16e160561c009d2bd2e7231d57f5d86dd36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* PictureGLView */

#include <Cocoa/Cocoa.h>

#include "Manager.h"

@interface HBPictureGLView : NSOpenGLView

{
    HBManager        * fManager;
    HBTitle          * fTitle;

    uint8_t          * fPicture;
}

- (void) SetManager: (HBManager*) manager;
- (void) SetTitle: (HBTitle*) title;
- (void) ShowPicture: (int) picture;

@end