Searched refs:colorAttachmentDescriptions (Results 1 – 1 of 1) sorted by relevance
501 std::vector<VkAttachmentDescription> colorAttachmentDescriptions(m_imageCount); in ImageSamplingInstance() local506 … colorAttachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags; in ImageSamplingInstance()507 colorAttachmentDescriptions[imgNdx].format = m_colorFormat; // VkFormat format; in ImageSamplingInstance()508 …colorAttachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBit… in ImageSamplingInstance()509 …colorAttachmentDescriptions[imgNdx].loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; // VkAttachmentLoad… in ImageSamplingInstance()510 …colorAttachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentSt… in ImageSamplingInstance()511 …colorAttachmentDescriptions[imgNdx].stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; // VkAttach… in ImageSamplingInstance()512 …colorAttachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; // VkAtta… in ImageSamplingInstance()513 …colorAttachmentDescriptions[imgNdx].initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // V… in ImageSamplingInstance()514 …colorAttachmentDescriptions[imgNdx].finalLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // Vk… in ImageSamplingInstance()[all …]