wlroots-hyprland/examples/compositor/main.c

93 lines
2.9 KiB
C
Raw Normal View History

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>
#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>
#include <wayland-server.h>
#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/matrix.h>
2017-06-22 22:32:47 +02:00
#include <wlr/render/gles2.h>
2017-06-21 16:27:45 +02:00
#include <wlr/types/wlr_output.h>
2017-08-09 15:58:10 +02:00
#include <wlr/types/wlr_surface.h>
2017-08-14 19:22:28 +02:00
#include <wlr/types/wlr_wl_shell.h>
#include <wlr/types/wlr_xdg_shell_v6.h>
2017-06-13 03:53:41 +02:00
#include <xkbcommon/xkbcommon.h>
#include <wlr/util/log.h>
#include "shared.h"
#include "compositor.h"
2017-06-13 16:13:11 +02:00
struct sample_state {
2017-06-22 22:32:47 +02:00
struct wlr_renderer *renderer;
struct wl_compositor_state compositor;
2017-08-14 19:22:28 +02:00
struct wlr_wl_shell wl_shell;
struct wlr_xdg_shell_v6 *xdg_shell;
2017-05-07 18:26:48 +02: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;
}
void output_frame_handle_surface(struct sample_state *sample,
struct wlr_output *wlr_output, struct timespec *ts,
struct wl_resource *_res) {
struct wlr_surface *surface = wl_resource_get_user_data(_res);
float matrix[16];
float transform[16];
wlr_surface_flush_damage(surface);
if (surface->texture->valid) {
wlr_matrix_translate(&transform, 200, 200, 0);
wlr_surface_get_matrix(surface, &matrix,
&wlr_output->transform_matrix, &transform);
wlr_render_with_matrix(sample->renderer, surface->texture, &matrix);
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-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);
struct wlr_wl_shell_surface *wl_shell_surface;
wl_list_for_each(wl_shell_surface, &sample->wl_shell.surfaces, link) {
output_frame_handle_surface(sample, wlr_output, ts, wl_shell_surface->surface);
}
struct wlr_xdg_surface_v6 *xdg_surface;
wl_list_for_each(xdg_surface, &sample->xdg_shell->surfaces, link) {
output_frame_handle_surface(sample, wlr_output, ts, xdg_surface->surface);
}
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 };
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
2017-08-11 04:15:37 +02:00
state.renderer = wlr_gles2_renderer_init(compositor.backend);
wl_display_init_shm(compositor.display);
wl_compositor_init(compositor.display, &state.compositor, state.renderer);
2017-08-14 19:22:28 +02:00
wlr_wl_shell_init(&state.wl_shell, compositor.display);
state.xdg_shell = wlr_xdg_shell_v6_init(compositor.display);
2017-06-22 22:32:47 +02:00
2017-06-13 16:13:11 +02:00
compositor_run(&compositor);
}