Home
last modified time | relevance | path

Searched refs:extProperties (Results 1 – 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.cpp4546 VkPhysicalDeviceProperties2 extProperties; in deviceProperties2() local
4548 extProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in deviceProperties2()
4549 extProperties.pNext = DE_NULL; in deviceProperties2()
4552 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties); in deviceProperties2()
4554 TCU_CHECK(extProperties.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2); in deviceProperties2()
4555 TCU_CHECK(extProperties.pNext == DE_NULL); in deviceProperties2()
4566 const deUint8* extPropertyBytes = reinterpret_cast<deUint8*>(&extProperties.properties) + offset; in deviceProperties2()
4572 log << TestLog::Message << extProperties.properties << TestLog::EndMessage; in deviceProperties2()
4766 extProperties.pNext = prev; in deviceProperties2()
4768 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties); in deviceProperties2()
[all …]
DvktApiVersionCheck.cpp284 vector<string> filterMultiAuthorExtensions (vector<VkExtensionProperties> extProperties) in filterMultiAuthorExtensions() argument
293 for (size_t extNdx = 0; extNdx < extProperties.size(); extNdx++) in filterMultiAuthorExtensions()
297 if (deStringBeginsWith(extProperties[extNdx].extensionName, extensionGroups[extGroupNdx])) in filterMultiAuthorExtensions()
298 multiAuthorExtensions.push_back(extProperties[extNdx].extensionName); in filterMultiAuthorExtensions()
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrFormatTests.cpp399 VkImageFormatProperties2 extProperties = in testFormat() local
420 …hysicalDeviceImageFormatProperties2(context.getPhysicalDevice(), &imageFormatInfo, &extProperties); in testFormat()
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassMultisampleTests.cpp292 VkImageFormatProperties2 extProperties = in createImage() local
309 …if ((vki.getPhysicalDeviceImageFormatProperties2(physicalDevice, &formatInfo2, &extProperties) == … in createImage()
310 || extProperties.imageFormatProperties.maxExtent.width < imageExtent.width in createImage()
311 || extProperties.imageFormatProperties.maxExtent.height < imageExtent.height in createImage()
312 || ((extProperties.imageFormatProperties.sampleCounts & sampleCountBit) == 0)) in createImage()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageSamplingInstance.cpp232 VkImageFormatProperties2 extProperties = in checkSupportImageSamplingInstance() local
249 …iceImageFormatProperties2(context.getPhysicalDevice(), &formatInfo2, &extProperties) == VK_ERROR_F… in checkSupportImageSamplingInstance()
250 || extProperties.imageFormatProperties.maxExtent.width < (deUint32)params.imageSize.x() in checkSupportImageSamplingInstance()
251 || extProperties.imageFormatProperties.maxExtent.height < (deUint32)params.imageSize.y()) in checkSupportImageSamplingInstance()