From 86dfe92bd0a0aa1e95ee005966bf8b70f4af3b38 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Thu, 5 Dec 2019 18:04:32 +0100 Subject: [PATCH] radv: do not use VK_TRUE/VK_FALSE For consistency. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- src/amd/vulkan/radv_device.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 691f943f6b5..fe8430e7ac5 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1029,8 +1029,8 @@ void radv_GetPhysicalDeviceFeatures2( case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_EXT: { VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *features = (VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *)ext; - features->vertexAttributeInstanceRateDivisor = VK_TRUE; - features->vertexAttributeInstanceRateZeroDivisor = VK_TRUE; + features->vertexAttributeInstanceRateDivisor = true; + features->vertexAttributeInstanceRateZeroDivisor = true; break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT: { @@ -1049,7 +1049,7 @@ void radv_GetPhysicalDeviceFeatures2( case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PRIORITY_FEATURES_EXT: { VkPhysicalDeviceMemoryPriorityFeaturesEXT *features = (VkPhysicalDeviceMemoryPriorityFeaturesEXT *)ext; - features->memoryPriority = VK_TRUE; + features->memoryPriority = true; break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT: { @@ -1531,12 +1531,12 @@ void radv_GetPhysicalDeviceProperties2( properties->primitiveOverestimationSize = 0; properties->maxExtraPrimitiveOverestimationSize = 0; properties->extraPrimitiveOverestimationSizeGranularity = 0; - properties->primitiveUnderestimation = VK_FALSE; - properties->conservativePointAndLineRasterization = VK_FALSE; - properties->degenerateTrianglesRasterized = VK_FALSE; - properties->degenerateLinesRasterized = VK_FALSE; - properties->fullyCoveredFragmentShaderInputVariable = VK_FALSE; - properties->conservativeRasterizationPostDepthCoverage = VK_FALSE; + properties->primitiveUnderestimation = false; + properties->conservativePointAndLineRasterization = false; + properties->degenerateTrianglesRasterized = false; + properties->degenerateLinesRasterized = false; + properties->fullyCoveredFragmentShaderInputVariable = false; + properties->conservativeRasterizationPostDepthCoverage = false; break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT: { @@ -1602,7 +1602,7 @@ void radv_GetPhysicalDeviceProperties2( properties->sampleLocationCoordinateRange[0] = 0.0f; properties->sampleLocationCoordinateRange[1] = 0.9375f; properties->sampleLocationSubPixelBits = 4; - properties->variableSampleLocations = VK_FALSE; + properties->variableSampleLocations = false; break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR: { @@ -1622,8 +1622,8 @@ void radv_GetPhysicalDeviceProperties2( VK_RESOLVE_MODE_MIN_BIT_KHR | VK_RESOLVE_MODE_MAX_BIT_KHR; - properties->independentResolveNone = VK_TRUE; - properties->independentResolve = VK_TRUE; + properties->independentResolveNone = true; + properties->independentResolve = true; break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES_EXT: {