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-07-11 07:18:34 +00:00
|
|
|
#include <wlr/backend/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-08-09 13:58:10 +00:00
|
|
|
#include <wlr/types/wlr_surface.h>
|
2017-06-13 01:53:41 +00:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2017-08-03 13:50:45 +00:00
|
|
|
#include <wlr/util/log.h>
|
2017-07-12 02:16:56 +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-08-08 12:09:14 +00:00
|
|
|
struct xdg_shell_state xdg_shell;
|
2017-05-07 16:26:48 +00:00
|
|
|
};
|
|
|
|
|
2017-08-09 19:58:41 +00:00
|
|
|
/*
|
|
|
|
* Convert timespec to milliseconds
|
|
|
|
*/
|
|
|
|
static inline int64_t timespec_to_msec(const struct timespec *a) {
|
|
|
|
return (int64_t)a->tv_sec * 1000 + a->tv_nsec / 1000000;
|
|
|
|
}
|
|
|
|
|
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);
|
2017-08-03 18:20:51 +00:00
|
|
|
|
|
|
|
struct wl_resource *_res;
|
|
|
|
float matrix[16];
|
|
|
|
wl_list_for_each(_res, &sample->compositor.surfaces, link) {
|
2017-08-09 13:33:30 +00:00
|
|
|
struct wlr_surface *surface = wl_resource_get_user_data(_res);
|
2017-08-10 12:26:16 +00:00
|
|
|
wlr_surface_flush_damage(surface);
|
2017-08-09 13:33:30 +00:00
|
|
|
if (surface->texture->valid) {
|
|
|
|
wlr_texture_get_matrix(surface->texture, &matrix,
|
2017-08-03 18:20:51 +00:00
|
|
|
&wlr_output->transform_matrix, 200, 200);
|
2017-08-09 13:33:30 +00:00
|
|
|
wlr_render_with_matrix(sample->renderer, surface->texture, &matrix);
|
2017-08-09 19:58:41 +00:00
|
|
|
|
|
|
|
struct wlr_frame_callback *cb, *cnext;
|
|
|
|
wl_list_for_each_safe(cb, cnext, &surface->frame_callback_list, link) {
|
|
|
|
wl_callback_send_done(cb->resource, timespec_to_msec(ts));
|
|
|
|
wl_resource_destroy(cb->resource);
|
|
|
|
}
|
2017-08-03 18:20:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-22 20:32:47 +00:00
|
|
|
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
|
|
|
|
2017-08-11 02:15:37 +00:00
|
|
|
state.renderer = wlr_gles2_renderer_init(compositor.backend);
|
2017-06-23 19:10:52 +00:00
|
|
|
wl_display_init_shm(compositor.display);
|
2017-08-03 13:50:45 +00:00
|
|
|
wl_compositor_init(compositor.display, &state.compositor, state.renderer);
|
2017-06-28 22:51:58 +00:00
|
|
|
wl_shell_init(compositor.display, &state.shell);
|
2017-08-08 12:09:14 +00:00
|
|
|
xdg_shell_init(compositor.display, &state.xdg_shell);
|
2017-06-22 20:32:47 +00:00
|
|
|
|
2017-06-13 14:13:11 +00:00
|
|
|
compositor_run(&compositor);
|
2017-08-09 14:55:23 +00:00
|
|
|
|
|
|
|
xdg_shell_release(&state.xdg_shell);
|
2017-04-25 19:06:58 +00:00
|
|
|
}
|