diff options
author | David Robillard <d@drobilla.net> | 2023-01-08 01:02:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-08 01:06:37 -0500 |
commit | 92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4 (patch) | |
tree | aa91ae18efac00651f73efef51173edbcc00489f /test/test_gl.c | |
parent | 14b35ef217f5ee387c4f33b1b24bebb015e18f23 (diff) | |
download | pugl-92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4.tar.gz pugl-92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4.tar.bz2 pugl-92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4.zip |
Add support for raising windows
Diffstat (limited to 'test/test_gl.c')
-rw-r--r-- | test/test_gl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_gl.c b/test/test_gl.c index da84c1a..bf9b02a 100644 --- a/test/test_gl.c +++ b/test/test_gl.c @@ -85,7 +85,7 @@ main(int argc, char** argv) puglSetBackend(test.view, puglGlBackend()); puglSetEventFunc(test.view, onEvent); puglSetSizeHint(test.view, PUGL_DEFAULT_SIZE, 512, 512); - puglShow(test.view); + puglShow(test.view, PUGL_SHOW_PASSIVE); // Enter OpenGL context as if setting things up puglEnterContext(test.view); |