Lines Matching refs:Unique
357 …const Unique<VkImage> colorImage (makeImage (vk, device, makeImageCreateInfo(colorFormat, co… in draw()
359 …const Unique<VkImageView> colorAttachment (makeImageView (vk, device, *colorImage, VK_IMAGE_VIE… in draw()
362 …const Unique<VkBuffer> vertexBuffer (makeBuffer(vk, device, makeBufferCreateInfo(vertexBufferS… in draw()
365 …const Unique<VkShaderModule> vertexModule (createShaderModule (vk, device, context.getBinaryColl… in draw()
366 …const Unique<VkShaderModule> geometryModule (createShaderModule (vk, device, context.getBinaryCo… in draw()
367 …const Unique<VkShaderModule> fragmentModule (createShaderModule (vk, device, context.getBinaryCo… in draw()
369 const Unique<VkRenderPass> renderPass (makeRenderPass (vk, device, colorFormat)); in draw()
370 …const Unique<VkFramebuffer> framebuffer (makeFramebuffer (vk, device, *renderPass, *colorAtta… in draw()
371 const Unique<VkPipelineLayout> pipelineLayout (makePipelineLayout (vk, device)); in draw()
372 …const Unique<VkPipeline> pipeline (makeGraphicsPipeline (vk, device, *pipelineLayout, *renderP… in draw()
374 const Unique<VkCommandPool> cmdPool (makeCommandPool (vk, device, queueFamilyIndex)); in draw()
375 const Unique<VkCommandBuffer> cmdBuffer (makeCommandBuffer (vk, device, *cmdPool)); in draw()
638 …const Unique<VkBuffer> colorBuffer (makeBuffer(vk, device, makeBufferCreateInfo(colorBufferSiz… in test()