Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ > Class Template Reference

#include <pipeline.h>

Public Types

using VertexShader = VertexShader_
 
using FragmentShader = FragmentShader_
 
using Builder = PipelineBuilder< VertexShader, FragmentShader >
 

Public Member Functions

 RenderPipelineHandle (const Context &context)
 
 RenderPipelineHandle (const Context &context, std::optional< PipelineDescriptor > desc)
 
 RenderPipelineHandle (PipelineFuture< PipelineDescriptor > future)
 
std::shared_ptr< Pipeline< PipelineDescriptor > > WaitAndGet ()
 
std::optional< PipelineDescriptorGetDescriptor () const
 

Detailed Description

template<class VertexShader_, class FragmentShader_>
class impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >

Holds a reference to a Pipeline used for rendering while also maintaining the vertex shader and fragment shader types at compile-time.

See also:

Definition at line 98 of file pipeline.h.

Member Typedef Documentation

◆ Builder

template<class VertexShader_ , class FragmentShader_ >
using impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::Builder = PipelineBuilder<VertexShader, FragmentShader>

Definition at line 107 of file pipeline.h.

◆ FragmentShader

template<class VertexShader_ , class FragmentShader_ >
using impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::FragmentShader = FragmentShader_

Definition at line 106 of file pipeline.h.

◆ VertexShader

template<class VertexShader_ , class FragmentShader_ >
using impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::VertexShader = VertexShader_

Definition at line 105 of file pipeline.h.

Constructor & Destructor Documentation

◆ RenderPipelineHandle() [1/3]

template<class VertexShader_ , class FragmentShader_ >
impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::RenderPipelineHandle ( const Context context)
inlineexplicit

Definition at line 109 of file pipeline.h.

111 context,
RenderPipelineHandle(const Context &context)
Definition pipeline.h:109
PipelineFuture< PipelineDescriptor > CreatePipelineFuture(const Context &context, std::optional< PipelineDescriptor > desc)
Definition pipeline.cc:24
static std::optional< PipelineDescriptor > MakeDefaultPipelineDescriptor(const Context &context, const std::vector< Scalar > &constants={})
Create a default pipeline descriptor using the combination reflected shader information....

◆ RenderPipelineHandle() [2/3]

template<class VertexShader_ , class FragmentShader_ >
impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::RenderPipelineHandle ( const Context context,
std::optional< PipelineDescriptor desc 
)
inlineexplicit

Definition at line 114 of file pipeline.h.

116 : RenderPipelineHandle(CreatePipelineFuture(context, desc)) {}

◆ RenderPipelineHandle() [3/3]

template<class VertexShader_ , class FragmentShader_ >
impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::RenderPipelineHandle ( PipelineFuture< PipelineDescriptor future)
inlineexplicit

Definition at line 118 of file pipeline.h.

119 : pipeline_future_(std::move(future)) {}

Member Function Documentation

◆ GetDescriptor()

template<class VertexShader_ , class FragmentShader_ >
std::optional< PipelineDescriptor > impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::GetDescriptor ( ) const
inline

Definition at line 132 of file pipeline.h.

132 {
133 return pipeline_future_.descriptor;
134 }

◆ WaitAndGet()

template<class VertexShader_ , class FragmentShader_ >
std::shared_ptr< Pipeline< PipelineDescriptor > > impeller::RenderPipelineHandle< VertexShader_, FragmentShader_ >::WaitAndGet ( )
inline

Definition at line 121 of file pipeline.h.

121 {
122 if (did_wait_) {
123 return pipeline_;
124 }
125 did_wait_ = true;
126 if (pipeline_future_.IsValid()) {
127 pipeline_ = pipeline_future_.Get();
128 }
129 return pipeline_;
130 }

The documentation for this class was generated from the following file: