LiteFX 0.3.1.2022
Computer Graphics Engine
|
Represents a compute Pipeline. More...
#include <rendering.hpp>
Inherits LiteFX::Rendering::IComputePipeline, and LiteFX::Rendering::Pipeline< TPipelineLayout, TShaderProgram >.
Public Member Functions | |
virtual | ~ComputePipeline () noexcept=default |
Public Member Functions inherited from LiteFX::Rendering::IComputePipeline | |
virtual | ~IComputePipeline () noexcept=default |
Public Member Functions inherited from LiteFX::Rendering::IPipeline | |
virtual | ~IPipeline () noexcept=default |
SharedPtr< const IShaderProgram > | program () const noexcept |
Returns the shader program used by the pipeline. More... | |
SharedPtr< const IPipelineLayout > | layout () const noexcept |
Returns the layout of the render pipeline. More... | |
Public Member Functions inherited from LiteFX::Rendering::IStateResource | |
virtual | ~IStateResource () noexcept=default |
virtual const String & | name () const noexcept=0 |
Returns the name of the resource. More... | |
Public Member Functions inherited from LiteFX::Rendering::Pipeline< TPipelineLayout, TShaderProgram > | |
virtual | ~Pipeline () noexcept=default |
virtual SharedPtr< const shader_program_type > | program () const noexcept=0 |
virtual SharedPtr< const pipeline_layout_type > | layout () const noexcept=0 |
Public Member Functions inherited from LiteFX::Rendering::StateResource | |
StateResource (StringView name) | |
Initializes a new state resource instance. More... | |
StateResource (StateResource &&)=delete | |
StateResource (const StateResource &)=delete | |
virtual | ~StateResource () noexcept |
virtual const String & | name () const noexcept override |
Returns the name of the resource. More... | |
Additional Inherited Members | |
Public Types inherited from LiteFX::Rendering::Pipeline< TPipelineLayout, TShaderProgram > | |
using | shader_program_type = TShaderProgram |
using | pipeline_layout_type = TPipelineLayout |
Protected Member Functions inherited from LiteFX::Rendering::StateResource | |
StateResource () noexcept | |
String & | name () noexcept |
Represents a compute Pipeline.
TPipelineLayout | The type of the render pipeline layout. Must implement PipelineLayout. |
TShaderProgram | The type of the shader program. Must implement ShaderProgram. |
|
virtualdefaultnoexcept |