|
void | AddPass (xiiUniquePtr< xiiRenderPipelinePass > &&pPass) |
|
void | RemovePass (xiiRenderPipelinePass *pPass) |
|
void | GetPasses (xiiDynamicArray< const xiiRenderPipelinePass * > &ref_passes) const |
|
void | GetPasses (xiiDynamicArray< xiiRenderPipelinePass * > &ref_passes) |
|
xiiRenderPipelinePass * | GetPassByName (const xiiStringView &sPassName) |
|
bool | Connect (xiiRenderPipelinePass *pOutputNode, xiiStringView sOutputPinName, xiiRenderPipelinePass *pInputNode, xiiStringView sInputPinName) |
|
bool | Connect (xiiRenderPipelinePass *pOutputNode, xiiHashedString sOutputPinName, xiiRenderPipelinePass *pInputNode, xiiHashedString sInputPinName) |
|
bool | Disconnect (xiiRenderPipelinePass *pOutputNode, xiiHashedString sOutputPinName, xiiRenderPipelinePass *pInputNode, xiiHashedString sInputPinName) |
|
const xiiRenderPipelinePassConnection * | GetInputConnection (const xiiRenderPipelinePass *pPass, xiiHashedString sInputPinName) const |
|
const xiiRenderPipelinePassConnection * | GetOutputConnection (const xiiRenderPipelinePass *pPass, xiiHashedString sOutputPinName) const |
|
void | AddExtractor (xiiUniquePtr< xiiExtractor > &&pExtractor) |
|
void | RemoveExtractor (xiiExtractor *pExtractor) |
|
void | GetExtractors (xiiDynamicArray< const xiiExtractor * > &ref_extractors) const |
|
void | GetExtractors (xiiDynamicArray< xiiExtractor * > &ref_extractors) |
|
xiiExtractor * | GetExtractorByName (const xiiStringView &sExtractorName) |
|
const xiiExtractedRenderData & | GetRenderData () const |
|
xiiRenderDataBatchList | GetRenderDataBatchesWithCategory (xiiRenderData::Category category, xiiRenderDataBatch::Filter filter=xiiRenderDataBatch::Filter()) const |
|
void | CreateDgmlGraph (xiiDGMLGraph &ref_graph) |
| Creates a DGML graph of all passes and textures. Can be used to verify that no accidental temporary textures are created due to poorly constructed pipelines or errors in code.
|
|
XII_ALWAYS_INLINE xiiHashedString | GetViewName () const |
|
template<typename T> |
XII_ALWAYS_INLINE T * | GetFrameDataProvider () const |
|
virtual | ~xiiRefCounted ()=default |
| Adds a virtual destructor.
|
|
| xiiRefCountingImpl ()=default |
| Constructor.
|
|
| xiiRefCountingImpl (const xiiRefCountingImpl &rhs) |
|
void | operator= (const xiiRefCountingImpl &rhs) |
|
xiiUInt32 | AddRef () const |
| Increments the reference counter. Returns the new reference count.
|
|
xiiUInt32 | ReleaseRef () const |
| Decrements the reference counter. Returns the new reference count.
|
|
bool | IsReferenced () const |
| Returns true if the reference count is greater than 0, false otherwise.
|
|
xiiUInt32 | GetRefCount () const |
| Returns the current reference count.
|
|