Lines Matching defs:device
48 VkDevice device;
54 , device (vkDevice)
61 VkDevice device,
63 : m_internalData (new ComputePipelineWrapper::InternalData(vk, device, pipelineConstructionType))
74 VkDevice device,
77 : m_internalData (new ComputePipelineWrapper::InternalData(vk, device, pipelineConstructionType))
180 const auto& device = m_internalData->device;
186 const Unique<VkShaderModule> shaderModule (createShaderModule(vk, device, *m_programBinary));
188 m_pipeline = vk::makeComputePipeline(vk, device, *m_pipelineLayout, m_pipelineCreateFlags, m_pipelineCreatePNext, *shaderModule, 0u, specializationInfo, 0, m_subgroupSize);
213 m_shader = createShader(vk, device, createInfo);
218 vk.getShaderBinaryDataEXT(device, *m_shader, &dataSize, DE_NULL);
220 vk.getShaderBinaryDataEXT(device, *m_shader, &dataSize, data.data());
226 m_shader = createShader(vk, device, createInfo);
249 m_pipelineLayout = makePipelineLayout(m_internalData->vk, m_internalData->device, m_descriptorSetLayouts);