/external/deqp/external/vulkancts/framework/vulkan/ |
vkImageUtil.cpp | 68 const tcu::TextureFormat tcuFormat = mapVkFormat(format); 69 return tcuFormat.order == tcu::TextureFormat::D || tcuFormat.order == tcu::TextureFormat::S || tcuFormat.order == tcu::TextureFormat::DS; [all...] |
vkNullDriver.cpp | [all...] |
/external/deqp/external/vulkancts/modules/vulkan/multiview/ |
vktMultiViewRenderUtil.cpp | 67 const tcu::TextureFormat tcuFormat = mapVkFormat(depthStencilImageFormat); 68 const VkFormat result = (tcuFormat.order == tcu::TextureFormat::S || tcuFormat.order == tcu::TextureFormat::DS) ? VK_FORMAT_S8_UINT : VK_FORMAT_UNDEFINED; [all...] |
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineMultisampleSampleLocationsExtTests.cpp | 175 const tcu::TextureFormat tcuFormat = mapVkFormat(format); 177 if (tcuFormat.order == tcu::TextureFormat::DS) return VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT; 178 else if (tcuFormat.order == tcu::TextureFormat::D) return VK_IMAGE_ASPECT_DEPTH_BIT; 179 else if (tcuFormat.order == tcu::TextureFormat::S) return VK_IMAGE_ASPECT_STENCIL_BIT; [all...] |
vktPipelineMultisampleTests.cpp | 731 const tcu::TextureFormat tcuFormat = mapVkFormat(format); 733 if (tcuFormat.order == tcu::TextureFormat::DS) return VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT; 734 else if (tcuFormat.order == tcu::TextureFormat::D) return VK_IMAGE_ASPECT_DEPTH_BIT; 735 else if (tcuFormat.order == tcu::TextureFormat::S) return VK_IMAGE_ASPECT_STENCIL_BIT; [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiSmokeTests.cpp | 556 const tcu::TextureFormat tcuFormat = vk::mapVkFormat(colorFormat); 565 const tcu::ConstPixelBufferAccess resultAccess (tcuFormat, renderSize.x(), renderSize.y(), 1, readImageBufferMemory->getHostPtr()); 570 tcu::TextureLevel refImage (tcuFormat, renderSize.x(), renderSize.y()); 866 const tcu::TextureFormat tcuFormat = vk::mapVkFormat(colorFormat); [all...] |
vktApiGranularityTests.cpp | 194 const tcu::TextureFormat tcuFormat = mapVkFormat(it->format); 196 if (tcu::hasDepthComponent(tcuFormat.order)) 199 if (tcu::hasStencilComponent(tcuFormat.order))
|
vktApiBufferViewAccessTests.cpp | 433 const tcu::TextureFormat tcuFormat = mapVkFormat(m_colorFormat); 434 de::MovePtr<tcu::TextureLevel> resultLevel (new tcu::TextureLevel(tcuFormat, m_renderSize.x(), m_renderSize.y()));
|
vktApiCommandBuffersTests.cpp | 299 const tcu::TextureFormat tcuFormat = mapVkFormat(DEFAULT_IMAGE_FORMAT); 300 const VkDeviceSize pixelDataSize = DEFAULT_IMAGE_SIZE.height * DEFAULT_IMAGE_SIZE.height * tcuFormat.getPixelSize(); 301 de::MovePtr<tcu::TextureLevel> resultLevel (new tcu::TextureLevel(tcuFormat, DEFAULT_IMAGE_SIZE.width, DEFAULT_IMAGE_SIZE.height)); [all...] |
vktApiImageClearingTests.cpp | 640 const TextureFormat tcuFormat = mapVkFormat(format); 642 if (tcuFormat.order == TextureFormat::S || tcuFormat.order == TextureFormat::DS) 650 const TextureFormat tcuFormat = mapVkFormat(format); 652 if (tcuFormat.order == TextureFormat::D || tcuFormat.order == TextureFormat::DS) 887 const TextureFormat tcuFormat = aspectMask == VK_IMAGE_ASPECT_COLOR_BIT ? mapVkFormat(m_params.imageFormat) : 891 const deUint32 pixelSize = getPixelSize(tcuFormat); 900 de::MovePtr<TextureLevelPyramid> result (new TextureLevelPyramid(tcuFormat, m_imageMipLevels)); [all...] |
vktApiFeatureInfo.cpp | [all...] |
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
vktDrawCreateInfoUtil.cpp | 97 const tcu::TextureFormat tcuFormat = vk::mapVkFormat(_format); 99 switch (tcuFormat.order) [all...] |
/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
vktGeometryLayeredRenderingTests.cpp | 143 const tcu::TextureFormat tcuFormat = mapVkFormat(depthStencilImageFormat); 144 const VkFormat result = (tcuFormat.order == tcu::TextureFormat::S || tcuFormat.order == tcu::TextureFormat::DS) ? VK_FORMAT_S8_UINT : VK_FORMAT_UNDEFINED; [all...] |
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/ |
vktFragmentOperationsEarlyFragmentTests.cpp | 198 const tcu::TextureFormat tcuFormat = mapVkFormat(format); 200 if (tcuFormat.order == tcu::TextureFormat::DS) return VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT; 201 else if (tcuFormat.order == tcu::TextureFormat::D) return VK_IMAGE_ASPECT_DEPTH_BIT; 202 else if (tcuFormat.order == tcu::TextureFormat::S) return VK_IMAGE_ASPECT_STENCIL_BIT;
|
/external/deqp/external/vulkancts/modules/vulkan/device_group/ |
vktDeviceGroupRendering.cpp | [all...] |
/external/deqp/external/vulkancts/modules/vulkan/image/ |
vktImageMutableTests.cpp | 170 tcu::TextureFormat tcuFormat; 179 tcuFormat = mapVkFormat(format); 181 switch (getChannelSize(tcuFormat.type)) 393 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); 394 const std::string imageFormatStr = getShaderImageFormatQualifier(tcuFormat); 395 const std::string imageTypeStr = getShaderImageType(tcuFormat, caseDef.imageType); 443 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); 444 const std::string imageFormatStr = getShaderImageFormatQualifier(tcuFormat); 445 const std::string imageTypeStr = getShaderImageType(tcuFormat, caseDef.imageType); 475 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat) [all...] |