A graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs on a wide variety of devices.
Install
Run the following Vcpkg command to install the port.
vcpkg install vulkan
Usage
The package vulkan does not provide cmake or visual studio integration directly.
However, it can still easily be used.
Visual Studio:
Include $(VULKAN_SDK)/include to your include path.
CMake:
find_package(Vulkan REQUIRED)
target_link_libraries(main PRIVATE Vulkan::Vulkan)