summaryrefslogtreecommitdiffstats
path: root/macosx/PictureGLView.h
blob: effbf3ee21b6c268f63270eaea95f4550bae33d7 (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 PictureGLView : NSOpenGLView

{
    HBManager        * fManager;
    HBTitle          * fTitle;

    uint8_t          * fPicture;
}

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

@end