Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
slangbot committed Jan 27, 2025
1 parent 3a2412f commit 24ff2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/reflection-parameter-blocks/vulkan-api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ gfx::Result VulkanAPI::initGlobalProcs()
#define VK_API_GET_GLOBAL_PROC(x) this->x = (PFN_##x)dlsym(api.vulkanLibraryHandle, #x);
#else
dynamicLibraryName = "libvulkan.so.1";
this->vulkanLibraryHandle = dlopen(dynamicLibraryName, RTLD_NOW);
this->vulkanLibraryHandle = dlopen(dynamicLibraryName, RTLD_NOW);
#define VK_API_GET_GLOBAL_PROC(x) this->x = (PFN_##x)dlsym(api.vulkanLibraryHandle, #x);
#endif

Expand Down

0 comments on commit 24ff2e4

Please sign in to comment.