#pragma once #include "dxvk_pipeline.h" #include "dxvk_resource.h" #include "dxvk_shader.h" namespace dxvk { /** * \brief Compute pipeline * * Stores a compute pipeline object and the corresponding * pipeline layout. Unlike graphics pipelines, compute * pipelines do not need to be recompiled against any sort * of pipeline state. */ class DxvkComputePipeline : public DxvkResource { public: DxvkComputePipeline( const Rc& vkd, const Rc& layout, const Rc& cs); ~DxvkComputePipeline(); /** * \brief Descriptor set layout * * The descriptor set layout for this pipeline. * Use this to allocate new descriptor sets. * \returns The descriptor set layout */ VkDescriptorSetLayout descriptorSetLayout() const { return m_layout->descriptorSetLayout(); } /** * \brief Pipeline layout layout * * The pipeline layout for this pipeline. * Use this to bind descriptor sets. * \returns The descriptor set layout */ VkPipelineLayout pipelineLayout() const { return m_layout->pipelineLayout(); } /** * \brief Pipeline handle * \returns Pipeline handle */ VkPipeline getPipelineHandle() const { return m_pipeline; } private: Rc m_vkd; Rc m_layout; Rc m_cs; VkPipeline m_pipeline = VK_NULL_HANDLE; }; }