aboutsummaryrefslogtreecommitdiff
path: root/examples/quads.c
diff options
context:
space:
mode:
authorSimon Zeni <simon@bl4ckb0ne.ca>2021-09-24 09:34:51 -0400
committerSimon Zeni <simon@bl4ckb0ne.ca>2021-11-18 09:37:57 -0500
commit6d6e70b9e0e40b6d38ba9276127b869bae893d43 (patch)
tree7a459cc6e4283fd3783e66d43bc5cfd0a21b945a /examples/quads.c
parent142d10e591c0f349843f718d87b44c8ba2b33476 (diff)
examples: init wlr_output with allocator and renderer
Diffstat (limited to 'examples/quads.c')
-rw-r--r--examples/quads.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/quads.c b/examples/quads.c
index 6696ef7c..d74ef25e 100644
--- a/examples/quads.c
+++ b/examples/quads.c
@@ -9,6 +9,7 @@
#include <unistd.h>
#include <wayland-server-core.h>
#include <wlr/backend.h>
+#include <wlr/render/allocator.h>
#include <wlr/render/wlr_renderer.h>
#include <wlr/types/wlr_keyboard.h>
#include <wlr/types/wlr_output.h>
@@ -24,6 +25,7 @@ struct sample_state {
struct wl_listener new_input;
struct timespec last_frame;
struct wlr_renderer *renderer;
+ struct wlr_allocator *allocator;
struct wl_list outputs;
};
@@ -103,6 +105,9 @@ static void output_remove_notify(struct wl_listener *listener, void *data) {
static void new_output_notify(struct wl_listener *listener, void *data) {
struct wlr_output *output = data;
struct sample_state *sample = wl_container_of(listener, sample, new_output);
+
+ wlr_output_init_render(output, sample->allocator, sample->renderer);
+
struct sample_output *sample_output = calloc(1, sizeof(struct sample_output));
struct wlr_output_mode *mode = wlr_output_preferred_mode(output);
@@ -195,13 +200,15 @@ int main(int argc, char *argv[]) {
state.new_input.notify = new_input_notify;
clock_gettime(CLOCK_MONOTONIC, &state.last_frame);
- state.renderer = wlr_backend_get_renderer(wlr);
+ state.renderer = wlr_renderer_autocreate(wlr);
if (!state.renderer) {
wlr_log(WLR_ERROR, "Could not start compositor, OOM");
wlr_backend_destroy(wlr);
exit(EXIT_FAILURE);
}
+ state.allocator = wlr_allocator_autocreate(wlr, state.renderer);
+
if (!wlr_backend_start(wlr)) {
wlr_log(WLR_ERROR, "Failed to start backend");
wlr_backend_destroy(wlr);