Skip to content
Snippets Groups Projects
Commit 5e540356 authored by Mark Oliver Mints's avatar Mark Oliver Mints
Browse files

[#71] add compute pipeline handle and manager

parent 2934d8bf
No related branches found
No related tags found
1 merge request!83Resolve "Refactor Pipeline Config and Manager"
Pipeline #26991 passed
...@@ -78,6 +78,12 @@ namespace vkcv ...@@ -78,6 +78,12 @@ namespace vkcv
private: private:
using Handle::Handle; using Handle::Handle;
}; };
class ComputePipelineHandle : public Handle {
friend class ComputePipelineManager;
private:
using Handle::Handle;
};
class DescriptorSetHandle : public Handle { class DescriptorSetHandle : public Handle {
friend class DescriptorManager; friend class DescriptorManager;
......
#include "ComputePipelineManager.hpp"
#pragma once
/**
* * @authors Mark Mints
* @file src/vkcv/ComputePipelineManager.hpp
* @brief Creation and handling of Compute Pipelines
*/
namespace vkcv {
class ComputePipelineManager
{
};
}
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
/** /**
* * @authors Mark Mints * * @authors Mark Mints
* @file src/vkcv/PipelineManager.hpp * @file src/vkcv/PipelineManager.hpp
* @brief Creation and handling of pipelines * @brief Creation and handling of Graphic Pipelines
*/ */
// TODO: Edit @brief: add graphics pipeline, but only then when the compute part is in an own class. // TODO: Edit @brief: add graphics pipeline, but only then when the compute part is in an own class.
// TODO: More authors? Do we need authors (general question)? // TODO: More authors? Do we need authors (general question)?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment