Lines Matching refs:Vulkan
13 volk is a meta-loader for Vulkan. It allows you to dynamically load entrypoints required to use Vul…
14 …inking to vulkan-1.dll or statically linking Vulkan loader. Additionally, volk simplifies the use …
15 Vulkan entrypoints directly from the driver which can increase performance by skipping loader dispa…
23 … your build system. Note that the usual preprocessor defines that enable Vulkan's platform-specifi…
24 2. You can use volk in header-only fashion. Include `volk.h` whereever you want to use Vulkan funct…
30 …icts; consider defining `VK_NO_PROTOTYPES` when compiling code that uses Vulkan to make sure this …
38 This will attempt to load Vulkan loader from the system; if this function returns `VK_SUCCESS` you …
39 If this function fails, this means Vulkan loader isn't installed on your system.
41 After creating the Vulkan instance using Vulkan API, call this function:
47 This function will load all required Vulkan entrypoints, including all extensions; you can use Vulk…
51 … all device-related function calls, such as `vkCmdDraw`, will go through Vulkan loader dispatch co…
56 1. For applications that use just one VkDevice object, load device-related Vulkan entrypoints direc…
62 2. For applications that use multiple VkDevice objects, load device-related Vulkan entrypoints into…