Lines Matching refs:format
57 VkFormat format)
60 instanceInterface.getPhysicalDeviceFormatProperties(device, format, &formatProps);
63 // color attachment format we only need to check that it is a valid color attachment
64 // format here.
74 VkFormat format; // Framebuffer format.
157 DE_ASSERT(m_params.format != VK_FORMAT_UNDEFINED);
173 if (!isSupportedColorAttachmentFormat(ctx.getInstanceInterface(), ctx.getPhysicalDevice(), m_params.format))
174 TCU_THROW(NotSupportedError, "Unsupported color attachment format: " + std::string(getFormatName(m_params.format)));
245 , m_tcuFormat (mapVkFormat(m_params.format))
252 DE_ASSERT(isUintFormat(m_params.format));
268 m_params.format, // VkFormat format;
292 m_params.format, // VkFormat format;
303 m_renderPass = RenderPassWrapper(m_params.pipelineConstructionType, vk, vkDevice, m_params.format);
448 const auto result = readColorAttachment(vk, vkDevice, queue, queueFamilyIndex, allocator, m_colorImage->get(), m_params.format, m_renderSize).release();
482 std::string getSimpleFormatName (VkFormat format)
484 return de::toLower(std::string(getFormatName(format)).substr(std::string("VK_FORMAT_").size()));
511 // Note: the format will be chosen and changed later.
552 const auto& format = formatList[formatIdx];
553 const auto formatName = getSimpleFormatName(format);
554 const auto formatDesc = "Logical operator tests with format " + formatName;
560 params.format = format;