Lines Matching defs:vkDevice

255 	const VkDevice				vkDevice			= m_context.getDevice();
282 m_colorImage = de::MovePtr<ImageWithMemory>(new ImageWithMemory(vk, vkDevice, memAlloc, m_colorImageCreateInfo, MemoryRequirement::Any));
300 m_colorAttachmentView = createImageView(vk, vkDevice, &colorAttachmentViewParams);
303 m_renderPass = RenderPassWrapper(m_params.pipelineConstructionType, vk, vkDevice, m_params.format);
304 m_renderPass.createFramebuffer(vk, vkDevice, **m_colorImage, *m_colorAttachmentView, m_renderSize.x(), m_renderSize.y());
332 m_preRasterizationStatePipelineLayout = PipelineLayoutWrapper(m_params.pipelineConstructionType, vk, vkDevice, &pipelineLayoutParams);
335 m_fragmentStatePipelineLayout = PipelineLayoutWrapper(m_params.pipelineConstructionType, vk, vkDevice, &pipelineLayoutParams);
338 m_vertexShaderModule = ShaderWrapper(vk, vkDevice, m_context.getBinaryCollection().get("color_vert"), 0);
339 m_fragmentShaderModule = ShaderWrapper(vk, vkDevice, m_context.getBinaryCollection().get("color_frag"), 0);
395 m_cmdPool = createCommandPool(vk, vkDevice, VK_COMMAND_POOL_CREATE_TRANSIENT_BIT, queueFamilyIndex);
410 m_cmdBuffer = allocateCommandBuffer(vk, vkDevice, *m_cmdPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY);
432 const VkDevice vkDevice = m_context.getDevice();
435 submitCommandsAndWait(vk, vkDevice, queue, m_cmdBuffer.get());
442 const VkDevice vkDevice = m_context.getDevice();
448 const auto result = readColorAttachment(vk, vkDevice, queue, queueFamilyIndex, allocator, m_colorImage->get(), m_params.format, m_renderSize).release();