Lines Matching refs:get
291 auto colorAttachmentView = vk::makeImageView(vkd, device, colorAttachment->get(), vk::VK_IMAGE_VIEW_TYPE_2D, imageFormat, subresourceRange);
294 renderPass.createFramebuffer(vkd, device, **colorAttachment, colorAttachmentView.get(), imageExtent.width, imageExtent.height);
309 auto vtxshader = vk::ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("vert"));
310 auto frgshader = vk::ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("frag"));
311 auto tscshader1 = vk::ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("tesc"));
313 m_config.changeOutput ? m_context.getBinaryCollection().get("tesc2") : m_context.getBinaryCollection().get("tesc"));
314 auto tseshader1 = vk::ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("tese"));
315 auto tseshader2 = vk::ShaderWrapper(vkd, device, m_context.getBinaryCollection().get("tese2"));
383 auto commandBuffer = vk::allocateCommandBuffer(vkd, device, commandPool.get(), vk::VK_COMMAND_BUFFER_LEVEL_PRIMARY);
395 vk::beginCommandBuffer(vkd, commandBuffer.get());
397 vkd.cmdSetPatchControlPointsEXT(commandBuffer.get(), 3);
398 pipeline1.bind(commandBuffer.get());
399 vkd.cmdDraw(commandBuffer.get(), 6, 1, 0, 0);
400 pipeline2.bind(commandBuffer.get());
401 vkd.cmdDraw(commandBuffer.get(), 6, 1, 0, 0);
402 renderPass.end(vkd, commandBuffer.get());
403 vk::copyImageToBuffer(vkd, commandBuffer.get(), colorAttachment.get()->get(), (*outBuffer).get(), imageSize);
404 vk::endCommandBuffer(vkd, commandBuffer.get());
405 vk::submitCommandsAndWait(vkd, device, m_context.getUniversalQueue(), commandBuffer.get());