From b9b08cac23b89a5c559780700da271c7a41a8ebe Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Thu, 10 Sep 2015 12:54:32 -0600 Subject: bug-13139: refactor sparse properties --- demos/vulkaninfo.c | 12 ++++++------ include/vulkan.h | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index 786a3833..0e273437 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -817,12 +817,12 @@ static void app_dump_sparse_props(const VkPhysicalDeviceSparseProperties *sparse printf("\tVkPhysicalDeviceSparseProperties:\n"); printf("\t---------------------------------\n"); - printf("\t\tsparseResidencyStandard2DBlockShape = %u\n", sparseProps->sparseResidencyStandard2DBlockShape ); - printf("\t\tsparseResidencyStandard2DMSBlockShape = %u\n", sparseProps->sparseResidencyStandard2DMSBlockShape ); - printf("\t\tsparseResidencyStandard3DBlockShape = %u\n", sparseProps->sparseResidencyStandard3DBlockShape ); - printf("\t\tsparseResidencyAlignedMipSize = %u\n", sparseProps->sparseResidencyAlignedMipSize ); - printf("\t\tsparseResidencyNonResident = %u\n", sparseProps->sparseResidencyNonResident ); - printf("\t\tsparseResidencyNonResidentStrict = %u\n", sparseProps->sparseResidencyNonResidentStrict ); + printf("\t\tresidencyStandard2DBlockShape = %u\n", sparseProps->residencyStandard2DBlockShape ); + printf("\t\tresidencyStandard2DMSBlockShape = %u\n", sparseProps->residencyStandard2DMSBlockShape ); + printf("\t\tresidencyStandard3DBlockShape = %u\n", sparseProps->residencyStandard3DBlockShape ); + printf("\t\tresidencyAlignedMipSize = %u\n", sparseProps->residencyAlignedMipSize ); + printf("\t\tresidencyNonResident = %u\n", sparseProps->residencyNonResident ); + printf("\t\tresidencyNonResidentStrict = %u\n", sparseProps->residencyNonResidentStrict ); } static void app_dump_limits(const VkPhysicalDeviceLimits *limits) diff --git a/include/vulkan.h b/include/vulkan.h index a9dbbf40..25ceceaf 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -1297,12 +1297,12 @@ typedef struct { } VkPhysicalDeviceLimits; typedef struct { - VkBool32 sparseResidencyStandard2DBlockShape; - VkBool32 sparseResidencyStandard2DMSBlockShape; - VkBool32 sparseResidencyStandard3DBlockShape; - VkBool32 sparseResidencyAlignedMipSize; - VkBool32 sparseResidencyNonResident; - VkBool32 sparseResidencyNonResidentStrict; + VkBool32 residencyStandard2DBlockShape; + VkBool32 residencyStandard2DMSBlockShape; + VkBool32 residencyStandard3DBlockShape; + VkBool32 residencyAlignedMipSize; + VkBool32 residencyNonResident; + VkBool32 residencyNonResidentStrict; } VkPhysicalDeviceSparseProperties; typedef struct { -- cgit v1.2.3