aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_vulkan.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-20 14:21:28 -0400
committerDavid Robillard <d@drobilla.net>2022-05-21 15:33:21 -0400
commit66f2133d2b6293f62729d4665124094990441320 (patch)
treee648ccf01f4de96b5b3fd32fae7d8242c88b885c /test/test_vulkan.c
parentfd446ed67d9b697a150a59fa6746555af283127d (diff)
downloadpugl-66f2133d2b6293f62729d4665124094990441320.tar.gz
pugl-66f2133d2b6293f62729d4665124094990441320.tar.bz2
pugl-66f2133d2b6293f62729d4665124094990441320.zip
Set a title for all test windows
Diffstat (limited to 'test/test_vulkan.c')
-rw-r--r--test/test_vulkan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_vulkan.c b/test/test_vulkan.c
index f95b85d..0a364f3 100644
--- a/test/test_vulkan.c
+++ b/test/test_vulkan.c
@@ -167,6 +167,7 @@ main(int argc, char** argv)
// Create window
puglSetClassName(test.world, "PuglTest");
+ puglSetWindowTitle(test.view, "Pugl Vulkan Test");
puglSetHandle(test.view, &test);
puglSetBackend(test.view, puglVulkanBackend());
puglSetEventFunc(test.view, onEvent);