summaryrefslogtreecommitdiffstats
path: root/include/gui/gui.h
blob: 133149beef321e61911a5eb9c547d4360fdd8b48 (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
/*
 * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 *
 * GPL v2
 */

#ifndef __GUI_H__
#define __GUI_H__

#include <fb.h>

struct surface {
	int x;
	int y;
	int width;
	int height;
};

struct screen {
	int fd;
	struct fb_info *info;

	struct surface s;

	void *fb;
	int fbsize;
};

static inline void *gui_screen_render_buffer(struct screen *sc)
{
	return fb_get_screen_base(sc->info);
}

#endif /* __GUI_H__ */