diff options
author | David Robillard <d@drobilla.net> | 2025-01-21 17:14:09 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-21 17:14:09 -0500 |
commit | 0452a367a89ac415c647831880485a55eaddbe35 (patch) | |
tree | 96a5b2903660d9e74d81c17fec1cc5978d8af9b3 /examples/pugl_shader_demo.c | |
parent | 689f74f091d4745fd24caec306d2f8a69e8db351 (diff) | |
download | pugl-0452a367a89ac415c647831880485a55eaddbe35.tar.gz pugl-0452a367a89ac415c647831880485a55eaddbe35.tar.bz2 pugl-0452a367a89ac415c647831880485a55eaddbe35.zip |
Use PuglSpan for view sizes
Diffstat (limited to 'examples/pugl_shader_demo.c')
-rw-r--r-- | examples/pugl_shader_demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pugl_shader_demo.c b/examples/pugl_shader_demo.c index 2cdcb6e..4d6821a 100644 --- a/examples/pugl_shader_demo.c +++ b/examples/pugl_shader_demo.c @@ -75,7 +75,7 @@ static void teardownGl(PuglTestApp* app); static void -onConfigure(PuglView* view, double width, double height) +onConfigure(PuglView* view, PuglSpan width, PuglSpan height) { (void)view; |