HomeSort by relevance Sort by last modified time
    Searched defs:tcuFormat (Results 1 - 13 of 13) sorted by null

  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.cpp 62 const tcu::TextureFormat tcuFormat = mapVkFormat(format);
63 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/draw/
vktDrawCreateInfoUtil.cpp 97 const tcu::TextureFormat tcuFormat = vk::mapVkFormat(_format);
99 switch (tcuFormat.order)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 192 const tcu::TextureFormat tcuFormat = mapVkFormat(it->format);
194 if (tcu::hasDepthComponent(tcuFormat.order))
197 if (tcu::hasStencilComponent(tcuFormat.order))
vktApiSmokeTests.cpp 903 const tcu::TextureFormat tcuFormat = vk::mapVkFormat(colorFormat);
912 const tcu::ConstPixelBufferAccess resultAccess (tcuFormat, renderSize.x(), renderSize.y(), 1, readImageBufferMemory->getHostPtr());
917 tcu::TextureLevel refImage (tcuFormat, renderSize.x(), renderSize.y());
    [all...]
vktApiBufferViewAccessTests.cpp 728 const tcu::TextureFormat tcuFormat = mapVkFormat(m_colorFormat);
729 de::MovePtr<tcu::TextureLevel> resultLevel (new tcu::TextureLevel(tcuFormat, m_renderSize.x(), m_renderSize.y()));
    [all...]
vktApiCommandBuffersTests.cpp 394 const tcu::TextureFormat tcuFormat = mapVkFormat(DEFAULT_IMAGE_FORMAT);
395 const VkDeviceSize pixelDataSize = DEFAULT_IMAGE_SIZE.height * DEFAULT_IMAGE_SIZE.height * tcuFormat.getPixelSize();
396 de::MovePtr<tcu::TextureLevel> resultLevel (new tcu::TextureLevel(tcuFormat, DEFAULT_IMAGE_SIZE.width, DEFAULT_IMAGE_SIZE.height));
    [all...]
vktApiImageClearingTests.cpp 636 const TextureFormat tcuFormat = mapVkFormat(format);
638 if (tcuFormat.order == TextureFormat::S || tcuFormat.order == TextureFormat::DS)
646 const TextureFormat tcuFormat = mapVkFormat(format);
648 if (tcuFormat.order == TextureFormat::D || tcuFormat.order == TextureFormat::DS)
905 const TextureFormat tcuFormat = aspectMask == VK_IMAGE_ASPECT_COLOR_BIT ? mapVkFormat(m_params.imageFormat) :
909 const deUint32 pixelSize = getPixelSize(tcuFormat)
    [all...]
vktApiFeatureInfo.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsEarlyFragmentTests.cpp 449 const tcu::TextureFormat tcuFormat = mapVkFormat(format);
451 if (tcuFormat.order == tcu::TextureFormat::DS) return VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT;
452 else if (tcuFormat.order == tcu::TextureFormat::D) return VK_IMAGE_ASPECT_DEPTH_BIT;
453 else if (tcuFormat.order == tcu::TextureFormat::S) return VK_IMAGE_ASPECT_STENCIL_BIT;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/device_group/
vktDeviceGroupRendering.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageMutableTests.cpp 303 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat);
304 const std::string imageFormatStr = getShaderImageFormatQualifier(tcuFormat);
305 const std::string imageTypeStr = getShaderImageType(tcuFormat, caseDef.imageType);
349 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat);
350 const std::string imageFormatStr = getShaderImageFormatQualifier(tcuFormat);
351 const std::string imageTypeStr = getShaderImageType(tcuFormat, caseDef.imageType);
381 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat);
383 const std::string samplerTypeStr = getShaderSamplerType(tcuFormat, viewType);
384 const std::string imageFormatStr = getShaderImageFormatQualifier(tcuFormat);
385 const std::string imageTypeStr = getShaderImageType(tcuFormat, caseDef.imageType)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleTests.cpp 598 const tcu::TextureFormat tcuFormat = mapVkFormat(format);
600 if (tcuFormat.order == tcu::TextureFormat::DS) return VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT;
601 else if (tcuFormat.order == tcu::TextureFormat::D) return VK_IMAGE_ASPECT_DEPTH_BIT;
602 else if (tcuFormat.order == tcu::TextureFormat::S) return VK_IMAGE_ASPECT_STENCIL_BIT;
    [all...]

Completed in 777 milliseconds