aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-09-10 12:54:32 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-09-11 09:20:01 -0600
commitb9b08cac23b89a5c559780700da271c7a41a8ebe (patch)
tree2e50f2236d7412c833914114b647a6ca0deb198f
parent1c29f19e3a2d27648c15462690600c79a6767d56 (diff)
downloadusermoji-b9b08cac23b89a5c559780700da271c7a41a8ebe.tar.xz
bug-13139: refactor sparse properties
-rw-r--r--demos/vulkaninfo.c12
-rw-r--r--include/vulkan.h12
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 {