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_window_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/pugl_window_demo.c') diff --git a/examples/pugl_window_demo.c b/examples/pugl_window_demo.c index 9b7795c..080d23b 100644 --- a/examples/pugl_window_demo.c +++ b/examples/pugl_window_demo.c @@ -236,7 +236,7 @@ main(int argc, char** argv) return logError("Failed to create window (%s)\n", puglStrerror(st)); } - puglShowWindow(view); + puglShow(view); } PuglFpsPrinter fpsPrinter = {puglGetTime(app.world)}; -- cgit v1.2.1