summaryrefslogtreecommitdiff
path: root/cogl.c
blob: 48681fb20fc1175d7fddc2f2639841bddb325b97 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <cairo-cogl.h>

#include "demo.h"

#include <stdlib.h>

#define container_of(ptr, type, member) ({ \
    const __typeof__ (((type *) 0)->member) *mptr__ = (ptr); \
    (type *) ((char *) mptr__ - offsetof (type, member)); \
})

struct cogl_device {
    struct device base;
    struct framebuffer fb;

    CoglFramebuffer *cogl;
    cairo_device_t *device;
};

static struct framebuffer *
get_fb (struct device *abstract_device)
{
    struct cogl_device *device = (struct cogl_device *) abstract_device;

    return &device->fb;
}

static struct cogl_device *
get_device (struct framebuffer *fb)
{
    return container_of(fb, struct cogl_device, fb);
}

static void
destroy (struct framebuffer *fb)
{
}

static void
show (struct framebuffer *fb)
{
    struct cogl_device *device = get_device (fb);

    cairo_cogl_surface_end_frame (fb->surface);
    cogl_framebuffer_swap_buffers (device->cogl);
}

struct device *
cogl_open (int argc, char **argv)
{
	struct cogl_device *device;
	CoglContext *context;
	CoglOnscreen *onscreen;
	int width = 800, height = 600;

	device = malloc(sizeof(struct cogl_device));
	device->base.name = "cogl";
	device->base.get_framebuffer = get_fb;
	device->base.width = width;
	device->base.height = height;

	device->fb.device = &device->base;
	device->fb.show = show;
	device->fb.destroy = destroy;

	context = cogl_context_new (NULL, NULL);

	device->device = cairo_cogl_device_create (context);
	onscreen = cogl_onscreen_new (context, width, height);
	device->cogl = COGL_FRAMEBUFFER (onscreen);

	cogl_onscreen_show (onscreen);

	cogl_push_framebuffer (device->cogl);
	cogl_ortho (0, width, height, 0, -1, 100);
	cogl_pop_framebuffer ();

	device->base.scanout =
		cairo_cogl_surface_create (device->device, device->cogl);
	device->fb.surface = device->base.scanout;

	return &device->base;
}