diff options
author | David Robillard <d@drobilla.net> | 2023-01-14 15:21:36 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-14 16:18:27 -0500 |
commit | 64131038a4f0c3e3f5f5b95e083f0320a68de058 (patch) | |
tree | 1a94a4e1811495d746a16c038be0d1e0e345f622 /test/test_vulkan.c | |
parent | e8dc1d219f4b461f29e11ad8fe0e463c6dfdb08b (diff) | |
download | pugl-64131038a4f0c3e3f5f5b95e083f0320a68de058.tar.gz pugl-64131038a4f0c3e3f5f5b95e083f0320a68de058.tar.bz2 pugl-64131038a4f0c3e3f5f5b95e083f0320a68de058.zip |
Allow applications to specify the Vulkan library path
I don't know if vendoring the Vulkan library is appropriate, but regardless,
this allows applications to set the name to whatever they want, or specify an
absolute path, just in case the standard value baked into Pugl isn't the right
one in some situation.
Diffstat (limited to 'test/test_vulkan.c')
-rw-r--r-- | test/test_vulkan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_vulkan.c b/test/test_vulkan.c index 1376676..3a7c612 100644 --- a/test/test_vulkan.c +++ b/test/test_vulkan.c @@ -157,7 +157,7 @@ main(int argc, char** argv) PuglWorld* const world = puglNewWorld(PUGL_PROGRAM, PUGL_WORLD_THREADS); PuglView* const view = puglNewView(world); - PuglVulkanLoader* const loader = puglNewVulkanLoader(world); + PuglVulkanLoader* const loader = puglNewVulkanLoader(world, NULL); const PuglTestOptions opts = puglParseTestOptions(&argc, &argv); PuglTest test = {world, view, VK_NULL_HANDLE, VK_NULL_HANDLE, opts, false}; |