Home
last modified time | relevance | path

Searched refs:dsResolveProperties (Results 1 – 2 of 2) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassDepthStencilResolveTests.cpp224 VkPhysicalDeviceDepthStencilResolvePropertiesKHR dsResolveProperties; in isFeaturesSupported() local
225 deMemset(&dsResolveProperties, 0, sizeof(VkPhysicalDeviceDepthStencilResolvePropertiesKHR)); in isFeaturesSupported()
226 dsResolveProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR; in isFeaturesSupported()
227 dsResolveProperties.pNext = DE_NULL; in isFeaturesSupported()
231 deviceProperties.pNext = &dsResolveProperties; in isFeaturesSupported()
242 !(depthResolveMode & dsResolveProperties.supportedDepthResolveModes)) in isFeaturesSupported()
245 !(stencilResolveMode & dsResolveProperties.supportedStencilResolveModes)) in isFeaturesSupported()
250 if (dsResolveProperties.independentResolveNone) in isFeaturesSupported()
252 if ((!dsResolveProperties.independentResolve) && in isFeaturesSupported()
265 if (!dsResolveProperties.independentResolve && (depthResolveMode != stencilResolveMode)) in isFeaturesSupported()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.cpp3319 VkPhysicalDeviceDepthStencilResolvePropertiesKHR dsResolveProperties[count]; in deviceProperties2() local
3323 …deMemset(&dsResolveProperties[ndx], 0xFF, sizeof(VkPhysicalDeviceDepthStencilResolvePropertiesKHR)… in deviceProperties2()
3324dsResolveProperties[ndx].sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIE… in deviceProperties2()
3325 dsResolveProperties[ndx].pNext = DE_NULL; in deviceProperties2()
3327 extProperties.pNext = &dsResolveProperties[ndx]; in deviceProperties2()
3332 …if (deMemCmp(&dsResolveProperties[0], &dsResolveProperties[1], sizeof(VkPhysicalDeviceDepthStencil… in deviceProperties2()
3337 log << TestLog::Message << toString(dsResolveProperties[0]) << TestLog::EndMessage; in deviceProperties2()