Lines Matching refs:get

163 		m_deviceDriver = de::MovePtr<DeviceDriverSC, DeinitDeviceDeleter>(new DeviceDriverSC(context.getPlatformInterface(), instance, *m_logicalDevice, context.getTestContext().getCommandLine(), context.getResourceInterface(), m_context.getDeviceVulkanSC10Properties(), m_context.getDeviceProperties(), context.getUsedApiVersion()), vk::DeinitDeviceDeleter(context.getResourceInterface().get(), *m_logicalDevice));
177 return m_singletonDevice->m_logicalDevice.get();
184 return *(m_singletonDevice->m_deviceDriver.get());
2314 shaderModuleFillImage = createShaderModule(vk, device, m_context.getBinaryCollection().get("fillShader"), 0);
2403 &descriptorSetLayout.get(), // pSetLayouts
2540 descriptorSetLayout.get(), // VkDescriptorSetLayout descriptorSetLayout;
2582 vk.updateDescriptorSetWithTemplate(device, descriptorSet.get(), *descriptorUpdateTemplate, templateVectorData[i]);
2586 vk.cmdBindDescriptorSets(*cmdBuffer, bindPoint, *pipelineLayout, 0, 1, &descriptorSet.get(), numDynamic, &zeros[0]);
2608 vk.cmdBindDescriptorSets(*cmdBuffer, bindPoint, *pipelineLayout, 0, 1, &descriptorSet.get(), numDynamic, &zeros[0]);
2637 const Unique<VkShaderModule> shader(createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0));
2676 const Unique<VkShaderModule> shader(createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0));
2739 sbtBuffer->get() // VkBuffer buffer;
2902 vs = createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0);
2903 fs = createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0); // bogus
2908 vs = createShaderModule(vk, device, m_context.getBinaryCollection().get("vert"), 0);
2909 fs = createShaderModule(vk, device, m_context.getBinaryCollection().get("test"), 0);
2952 pipelineLayout.get(), // VkPipelineLayout layout;
2953 renderPass.get(), // VkRenderPass renderPass;
3218 submitCommandsAndWait(vk, device, queue, cmdBuffer.get());
3448 const auto vertModule = createShaderModule(vkd, device, binaries.get("vert"));
3449 const auto fragModule = createShaderModule(vkd, device, binaries.get("frag"));
3451 const auto framebuffer = makeFramebuffer(vkd, device, renderPass.get(), colorBuffer.getImageView(), fbExtent.width, fbExtent.height);
3486 const auto pipeline = makeGraphicsPipeline(vkd, device, pipelineLayout.get(),
3487 vertModule.get(), VK_NULL_HANDLE, VK_NULL_HANDLE, VK_NULL_HANDLE, fragModule.get(),
3488 renderPass.get(), viewports, scissors, VK_PRIMITIVE_TOPOLOGY_POINT_LIST, 0u, 0u,
3493 const auto cmdBuffer = cmd.cmdBuffer.get();
3497 beginRenderPass(vkd, cmdBuffer, renderPass.get(), framebuffer.get(), scissors.at(0u), clearColor);
3501 vkd.cmdBindVertexBuffers2(cmdBuffer, 0u, 1u, &vertexBuffer.get(), &vertexBufferOffset, nullptr, &vertexBufferStride);
3503 vkd.cmdBindVertexBuffers2EXT(cmdBuffer, 0u, 1u, &vertexBuffer.get(), &vertexBufferOffset, nullptr, &vertexBufferStride);
3508 vkd.cmdBindVertexBuffers(cmdBuffer, 0u, 1u, &vertexBuffer.get(), &vertexBufferOffset);
3510 vkd.cmdBindPipeline(cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline.get());