vk/0.210.0: Advertise version 0.210.0

This commit is contained in:
Jason Ekstrand 2015-12-03 13:27:00 -08:00
parent 888744cabf
commit 4c19243562
4 changed files with 3 additions and 6125 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -41,7 +41,7 @@ extern "C" {
((major << 22) | (minor << 12) | patch)
// Vulkan API version supported by this file
#define VK_API_VERSION VK_MAKE_VERSION(0, 170, 2)
#define VK_API_VERSION VK_MAKE_VERSION(0, 210, 0)
#define VK_NULL_HANDLE 0

View file

@ -198,7 +198,7 @@ VkResult anv_CreateInstance(
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO);
if (pCreateInfo->pApplicationInfo->apiVersion != VK_MAKE_VERSION(0, 170, 2))
if (pCreateInfo->pApplicationInfo->apiVersion != VK_MAKE_VERSION(0, 210, 0))
return vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) {
@ -495,7 +495,7 @@ void anv_GetPhysicalDeviceProperties(
};
*pProperties = (VkPhysicalDeviceProperties) {
.apiVersion = VK_MAKE_VERSION(0, 170, 2),
.apiVersion = VK_MAKE_VERSION(0, 210, 0),
.driverVersion = 1,
.vendorID = 0x8086,
.deviceID = pdevice->chipset_id,