From ba11bb80c96fc9c9124ba2fa929425f558f86824 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 7 Jan 2023 19:27:05 -0500 Subject: Rename create/destroy events to realize/unrealize As evidence that this was confusing, the documentation for these was an outright lie, and I've burned quite a bit of time in the past few days trying to rework things based around that flawed understanding. These names make it clear what these events actually are. If we need actual create/destroy events with a broader scope, they'll have to be added, but I suspect those aren't actually useful anyway. --- examples/pugl_shader_demo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples') diff --git a/examples/pugl_shader_demo.c b/examples/pugl_shader_demo.c index e3a1900..cea6d0a 100644 --- a/examples/pugl_shader_demo.c +++ b/examples/pugl_shader_demo.c @@ -131,10 +131,10 @@ onEvent(PuglView* view, const PuglEvent* event) printEvent(event, "Event: ", app->opts.verbose); switch (event->type) { - case PUGL_CREATE: + case PUGL_REALIZE: setupGl(app); break; - case PUGL_DESTROY: + case PUGL_UNREALIZE: teardownGl(app); break; case PUGL_CONFIGURE: @@ -445,7 +445,7 @@ main(int argc, char** argv) // Create and configure world and view setupPugl(&app); - // Create window (which will send a PUGL_CREATE event) + // Realize window (which will send a PUGL_REALIZE event) const PuglStatus st = puglRealize(app.view); if (st) { return logError("Failed to create window (%s)\n", puglStrerror(st)); @@ -463,7 +463,7 @@ main(int argc, char** argv) puglPrintFps(app.world, &fpsPrinter, &app.framesDrawn); } - // Destroy window (which will send a PUGL_DESTROY event) + // Destroy window (which will send a PUGL_UNREALIZE event) puglFreeView(app.view); // Free everything else -- cgit v1.2.1