A stub package that ensures that Vulkan headers and a loader are available.
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
#include <vulkan/vulkan.h>
Create a Vulkan application info structure
#include <vulkan/vulkan.h>
#include <iostream>
int main() {
VkApplicationInfo appInfo = {};
appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
appInfo.pApplicationName = "Hello Vulkan";
appInfo.apiVersion = VK_API_VERSION_1_0;
std::cout << "Vulkan headers available" << std::endl;
return 0;
}
Upgrade
Version history
Breaking-change detection hasn't run for this library yet.
Audit
Security & dependencies
CVE tracking and dependency tree are planned for a later release.
Resources
No resource links recorded.