blob: 85e01727d6b283e0dbc4de44d45d6d5eb5435a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef __DISPLAY33_H__
#define __DISPLAY33_H__
#include "libdrm/drm_mode.h"
#include "types33.h"
/* TEMP XXX */
typedef struct {
u32 *data;
Size w, h;
} Surface33;
/**/
typedef struct {
Size id[2];
u8 *map[2];
Size stride;
Size size;
} Framebuffer33;
typedef struct {
Framebuffer33 fb;
Surface33 surface;
struct drm_mode_crtc crtc;
struct drm_mode_modeinfo mode;
struct drm_mode_get_connector connector;
Size devFd, ttyFd;
Boolean active;
} Display33;
extern Display33 __display;
Error display33_init( void );
void display33_flip( void );
void display33_vtswitcher_poll( int timeout );
void display33_term( void );
#endif /* __DISPLAY33_H__ */
|