Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageSamplingInstance.cpp618 std::vector<VkAttachmentDescription> colorAttachmentDescriptions(m_imageCount); in ImageSamplingInstance() local
623colorAttachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags; in ImageSamplingInstance()
624 colorAttachmentDescriptions[imgNdx].format = m_colorFormat; // VkFormat format; in ImageSamplingInstance()
625colorAttachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBit… in ImageSamplingInstance()
626colorAttachmentDescriptions[imgNdx].loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; // VkAttachmentLoad… in ImageSamplingInstance()
627colorAttachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentSt… in ImageSamplingInstance()
628colorAttachmentDescriptions[imgNdx].stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; // VkAttach… in ImageSamplingInstance()
629colorAttachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; // VkAtta… in ImageSamplingInstance()
630colorAttachmentDescriptions[imgNdx].initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // V… in ImageSamplingInstance()
631colorAttachmentDescriptions[imgNdx].finalLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // Vk… in ImageSamplingInstance()
[all …]