2017-05-07 16:26:48 +00:00
|
|
|
#define _POSIX_C_SOURCE 199309L
|
2017-06-13 01:53:41 +00:00
|
|
|
#include <string.h>
|
2017-05-07 16:26:48 +00:00
|
|
|
#include <stdio.h>
|
2017-04-25 19:06:58 +00:00
|
|
|
#include <stdlib.h>
|
2017-05-07 16:26:48 +00:00
|
|
|
#include <time.h>
|
2017-06-07 12:39:40 +00:00
|
|
|
#include <inttypes.h>
|
2017-04-25 19:06:58 +00:00
|
|
|
#include <wayland-server.h>
|
2017-05-31 19:38:26 +00:00
|
|
|
#include <wlr/backend.h>
|
2017-05-07 16:26:48 +00:00
|
|
|
#include <wlr/session.h>
|
2017-06-22 20:32:47 +00:00
|
|
|
#include <wlr/render.h>
|
|
|
|
#include <wlr/render/gles2.h>
|
2017-06-21 14:27:45 +00:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-06-13 01:53:41 +00:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-07-10 12:20:31 +00:00
|
|
|
#include "../shared.h"
|
|
|
|
#include "../compositor.h"
|
2017-04-25 19:06:58 +00:00
|
|
|
|
2017-06-13 14:13:11 +00:00
|
|
|
struct sample_state {
|
2017-06-22 20:32:47 +00:00
|
|
|
struct wlr_renderer *renderer;
|
2017-06-28 22:51:58 +00:00
|
|
|
struct wl_compositor_state compositor;
|
|
|
|
struct wl_shell_state shell;
|
2017-05-07 16:26:48 +00:00
|
|
|
};
|
|
|
|
|
2017-06-13 14:13:11 +00:00
|
|
|
void handle_output_frame(struct output_state *output, struct timespec *ts) {
|
|
|
|
struct compositor_state *state = output->compositor;
|
|
|
|
struct sample_state *sample = state->data;
|
2017-06-22 20:32:47 +00:00
|
|
|
struct wlr_output *wlr_output = output->output;
|
2017-05-07 16:26:48 +00:00
|
|
|
|
2017-06-29 20:00:24 +00:00
|
|
|
wlr_output_make_current(wlr_output);
|
2017-06-22 20:32:47 +00:00
|
|
|
wlr_renderer_begin(sample->renderer, wlr_output);
|
|
|
|
// TODO: render surfaces
|
|
|
|
wlr_renderer_end(sample->renderer);
|
2017-06-29 20:00:24 +00:00
|
|
|
wlr_output_swap_buffers(wlr_output);
|
2017-05-07 16:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2017-06-22 20:32:47 +00:00
|
|
|
struct sample_state state = { 0 };
|
2017-06-20 19:29:27 +00:00
|
|
|
struct compositor_state compositor = { 0,
|
|
|
|
.data = &state,
|
|
|
|
.output_frame_cb = handle_output_frame,
|
|
|
|
};
|
2017-06-13 14:13:11 +00:00
|
|
|
compositor_init(&compositor);
|
2017-06-22 20:32:47 +00:00
|
|
|
|
|
|
|
state.renderer = wlr_gles2_renderer_init();
|
2017-06-23 19:10:52 +00:00
|
|
|
wl_display_init_shm(compositor.display);
|
2017-06-28 22:51:58 +00:00
|
|
|
wl_compositor_init(compositor.display, &state.compositor);
|
|
|
|
wl_shell_init(compositor.display, &state.shell);
|
2017-06-22 20:32:47 +00:00
|
|
|
|
2017-06-13 14:13:11 +00:00
|
|
|
compositor_run(&compositor);
|
2017-04-25 19:06:58 +00:00
|
|
|
}
|