mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
79 lines
2.3 KiB
C
79 lines
2.3 KiB
C
#define _POSIX_C_SOURCE 199309L
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <inttypes.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/backend.h>
|
|
#include <wlr/backend/session.h>
|
|
#include <wlr/render.h>
|
|
#include <wlr/render/gles2.h>
|
|
#include <wlr/types/wlr_output.h>
|
|
#include <wlr/types/wlr_surface.h>
|
|
#include <wlr/types/wlr_xdg_shell_v6.h>
|
|
#include <xkbcommon/xkbcommon.h>
|
|
#include <wlr/util/log.h>
|
|
#include "shared.h"
|
|
#include "compositor.h"
|
|
|
|
struct sample_state {
|
|
struct wlr_renderer *renderer;
|
|
struct wl_compositor_state compositor;
|
|
struct wl_shell_state shell;
|
|
struct wlr_xdg_shell_v6 *xdg_shell;
|
|
};
|
|
|
|
/*
|
|
* 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 handle_output_frame(struct output_state *output, struct timespec *ts) {
|
|
struct compositor_state *state = output->compositor;
|
|
struct sample_state *sample = state->data;
|
|
struct wlr_output *wlr_output = output->output;
|
|
|
|
wlr_output_make_current(wlr_output);
|
|
wlr_renderer_begin(sample->renderer, wlr_output);
|
|
|
|
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);
|
|
wlr_surface_flush_damage(surface);
|
|
if (surface->texture->valid) {
|
|
wlr_texture_get_matrix(surface->texture, &matrix,
|
|
&wlr_output->transform_matrix, 200, 200);
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
wlr_renderer_end(sample->renderer);
|
|
wlr_output_swap_buffers(wlr_output);
|
|
}
|
|
|
|
int main() {
|
|
struct sample_state state = { 0 };
|
|
struct compositor_state compositor = { 0,
|
|
.data = &state,
|
|
.output_frame_cb = handle_output_frame,
|
|
};
|
|
compositor_init(&compositor);
|
|
|
|
state.renderer = wlr_gles2_renderer_init(compositor.backend);
|
|
wl_display_init_shm(compositor.display);
|
|
wl_compositor_init(compositor.display, &state.compositor, state.renderer);
|
|
wl_shell_init(compositor.display, &state.shell);
|
|
state.xdg_shell = wlr_xdg_shell_v6_init(compositor.display);
|
|
|
|
compositor_run(&compositor);
|
|
}
|