From adc925180be3a8b4a970c70c58ef6c3de6993458 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 23 Nov 2020 17:14:21 +0100 Subject: Rename puglShowWindow and puglHideWindow to puglShow an puglHide These names were confusing because a view is not necessarily a window. Since there's no room for ambiguity here, simply drop the superfluous word. --- examples/pugl_shader_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/pugl_shader_demo.c') diff --git a/examples/pugl_shader_demo.c b/examples/pugl_shader_demo.c index 476489d..3f5e7f3 100644 --- a/examples/pugl_shader_demo.c +++ b/examples/pugl_shader_demo.c @@ -426,7 +426,7 @@ main(int argc, char** argv) // Show window printViewHints(app.view); - puglShowWindow(app.view); + puglShow(app.view); // Calculate ideal frame duration to drive the main loop at a good rate const int refreshRate = puglGetViewHint(app.view, PUGL_REFRESH_RATE); -- cgit v1.2.1