aboutsummaryrefslogtreecommitdiff
path: root/examples/tablet.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-02-03 09:32:02 +0100
committeremersion <contact@emersion.fr>2018-02-03 09:32:02 +0100
commitddb1779f9fee28b6393ba6607852a078ed65575f (patch)
tree2a5265428c4a2af20e4a32c7cf6e830927a04ca7 /examples/tablet.c
parent402587ed65016fa89b9fcafc8d7af27b1958dd20 (diff)
render: make wlr_renderer_clear take a float[4] for the color
Diffstat (limited to 'examples/tablet.c')
-rw-r--r--examples/tablet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tablet.c b/examples/tablet.c
index f12ecbc4..ca76ec5a 100644
--- a/examples/tablet.c
+++ b/examples/tablet.c
@@ -44,7 +44,7 @@ static void handle_output_frame(struct output_state *output, struct timespec *ts
wlr_output_make_current(wlr_output, NULL);
wlr_renderer_begin(sample->renderer, wlr_output);
- wlr_renderer_clear(sample->renderer, 0.25f, 0.25f, 0.25f, 1);
+ wlr_renderer_clear(sample->renderer, &(float[]){0.25f, 0.25f, 0.25f, 1});
float matrix[16], view[16];
float distance = 0.8f * (1 - sample->distance);