diff options
author | emersion <contact@emersion.fr> | 2018-03-15 15:33:58 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-15 15:33:58 +0100 |
commit | 824a95ad19062e867178593f0937d14049422989 (patch) | |
tree | 1ad1793d6e7379979340eff1f0385afa549ea58d /examples/tablet.c | |
parent | d26b67cb06509fb39d9ed473a5d27b1f241ff635 (diff) |
matrix: use 2D matrices
Diffstat (limited to 'examples/tablet.c')
-rw-r--r-- | examples/tablet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tablet.c b/examples/tablet.c index 82f86553..521447b9 100644 --- a/examples/tablet.c +++ b/examples/tablet.c @@ -49,7 +49,7 @@ static void handle_output_frame(struct output_state *output, struct timespec *ts wlr_renderer_begin(sample->renderer, wlr_output); wlr_renderer_clear(sample->renderer, (float[]){0.25f, 0.25f, 0.25f, 1}); - float matrix[16]; + float matrix[9]; float distance = 0.8f * (1 - sample->distance); float tool_color[4] = { distance, distance, distance, 1 }; for (size_t i = 0; sample->button && i < 4; ++i) { |