From 64131038a4f0c3e3f5f5b95e083f0320a68de058 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 14 Jan 2023 15:21:36 -0500 Subject: 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. --- examples/pugl_vulkan_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/pugl_vulkan_demo.c b/examples/pugl_vulkan_demo.c index e1daeb0..59e3060 100644 --- a/examples/pugl_vulkan_demo.c +++ b/examples/pugl_vulkan_demo.c @@ -1077,7 +1077,7 @@ main(int argc, char** argv) } // Create Vulkan surface for window - PuglVulkanLoader* loader = puglNewVulkanLoader(app.world); + PuglVulkanLoader* loader = puglNewVulkanLoader(app.world, NULL); if (puglCreateSurface(puglGetInstanceProcAddrFunc(loader), app.view, vk->instance, -- cgit v1.2.1