2017-05-07 18:26:48 +02:00
|
|
|
#define _POSIX_C_SOURCE 199309L
|
2017-06-13 03:53:41 +02:00
|
|
|
#include <string.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <stdio.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
#include <stdlib.h>
|
2017-05-07 18:26:48 +02:00
|
|
|
#include <time.h>
|
2017-06-07 14:39:40 +02:00
|
|
|
#include <inttypes.h>
|
2017-04-25 21:06:58 +02:00
|
|
|
#include <wayland-server.h>
|
2017-05-31 21:38:26 +02:00
|
|
|
#include <wlr/backend.h>
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-22 22:32:47 +02:00
|
|
|
#include <wlr/render.h>
|
|
|
|
#include <wlr/render/gles2.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-06-13 03:53:41 +02:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-08-03 15:50:45 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-07-12 04:16:56 +02:00
|
|
|
#include "shared.h"
|
|
|
|
#include "compositor.h"
|
2017-04-25 21:06:58 +02:00
|
|
|
|
2017-06-13 16:13:11 +02:00
|
|
|
struct sample_state {
|
2017-06-22 22:32:47 +02:00
|
|
|
struct wlr_renderer *renderer;
|
2017-06-29 00:51:58 +02:00
|
|
|
struct wl_compositor_state compositor;
|
|
|
|
struct wl_shell_state shell;
|
2017-05-07 18:26:48 +02:00
|
|
|
};
|
|
|
|
|
2017-06-13 16:13:11 +02: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 22:32:47 +02:00
|
|
|
struct wlr_output *wlr_output = output->output;
|
2017-05-07 18:26:48 +02:00
|
|
|
|
2017-06-29 22:00:24 +02:00
|
|
|
wlr_output_make_current(wlr_output);
|
2017-06-22 22:32:47 +02:00
|
|
|
wlr_renderer_begin(sample->renderer, wlr_output);
|
2017-08-03 20:20:51 +02:00
|
|
|
|
|
|
|
struct wl_resource *_res;
|
|
|
|
float matrix[16];
|
|
|
|
wl_list_for_each(_res, &sample->compositor.surfaces, link) {
|
|
|
|
struct wlr_surface *surface = wl_resource_get_user_data(_res);
|
|
|
|
if (surface->valid) {
|
|
|
|
wlr_surface_get_matrix(surface, &matrix,
|
|
|
|
&wlr_output->transform_matrix, 200, 200);
|
|
|
|
wlr_render_with_matrix(sample->renderer, surface, &matrix);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-22 22:32:47 +02:00
|
|
|
wlr_renderer_end(sample->renderer);
|
2017-06-29 22:00:24 +02:00
|
|
|
wlr_output_swap_buffers(wlr_output);
|
2017-05-07 18:26:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2017-06-22 22:32:47 +02:00
|
|
|
struct sample_state state = { 0 };
|
2017-06-20 21:29:27 +02:00
|
|
|
struct compositor_state compositor = { 0,
|
|
|
|
.data = &state,
|
|
|
|
.output_frame_cb = handle_output_frame,
|
|
|
|
};
|
2017-06-13 16:13:11 +02:00
|
|
|
compositor_init(&compositor);
|
2017-06-22 22:32:47 +02:00
|
|
|
|
|
|
|
state.renderer = wlr_gles2_renderer_init();
|
2017-06-23 21:10:52 +02:00
|
|
|
wl_display_init_shm(compositor.display);
|
2017-08-03 15:50:45 +02:00
|
|
|
wl_compositor_init(compositor.display, &state.compositor, state.renderer);
|
2017-06-29 00:51:58 +02:00
|
|
|
wl_shell_init(compositor.display, &state.shell);
|
2017-06-22 22:32:47 +02:00
|
|
|
|
2017-06-13 16:13:11 +02:00
|
|
|
compositor_run(&compositor);
|
2017-04-25 21:06:58 +02:00
|
|
|
}
|