Searched refs:colorAttachmentDescriptions (Results 1 – 1 of 1) sorted by relevance
618 std::vector<VkAttachmentDescription> colorAttachmentDescriptions(m_imageCount); in ImageSamplingInstance() local623 … colorAttachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags; in ImageSamplingInstance()624 colorAttachmentDescriptions[imgNdx].format = m_colorFormat; // VkFormat format; in ImageSamplingInstance()625 …colorAttachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBit… in ImageSamplingInstance()626 …colorAttachmentDescriptions[imgNdx].loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; // VkAttachmentLoad… in ImageSamplingInstance()627 …colorAttachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentSt… in ImageSamplingInstance()628 …colorAttachmentDescriptions[imgNdx].stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; // VkAttach… in ImageSamplingInstance()629 …colorAttachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; // VkAtta… in ImageSamplingInstance()630 …colorAttachmentDescriptions[imgNdx].initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // V… in ImageSamplingInstance()631 …colorAttachmentDescriptions[imgNdx].finalLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // Vk… in ImageSamplingInstance()[all …]