|
|
void | AddPass (xiiUniquePtr< xiiRenderPipelinePassBase > &&pPass) |
| |
|
void | RemovePass (xiiRenderPipelinePassBase *pPass) |
| |
|
void | GetPasses (xiiDynamicArray< const xiiRenderPipelinePassBase * > &ref_passes) const |
| |
|
void | GetPasses (xiiDynamicArray< xiiRenderPipelinePassBase * > &ref_passes) |
| |
|
xiiRenderPipelinePassBase * | GetPassByName (const xiiStringView &sPassName) |
| |
|
bool | Connect (xiiRenderPipelinePassBase *pOutputNode, xiiStringView sOutputPinName, xiiRenderPipelinePassBase *pInputNode, xiiStringView sInputPinName) |
| |
|
bool | Connect (xiiRenderPipelinePassBase *pOutputNode, xiiHashedString sOutputPinName, xiiRenderPipelinePassBase *pInputNode, xiiHashedString sInputPinName) |
| |
|
bool | Disconnect (xiiRenderPipelinePassBase *pOutputNode, xiiHashedString sOutputPinName, xiiRenderPipelinePassBase *pInputNode, xiiHashedString sInputPinName) |
| |
|
const xiiRenderPipelinePassConnection * | GetInputConnection (const xiiRenderPipelinePassBase *pPass, xiiHashedString sInputPinName) const |
| |
|
const xiiRenderPipelinePassConnection * | GetOutputConnection (const xiiRenderPipelinePassBase *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) const |
| |
|
xiiUInt32 | AddRenderDataProcessor (RenderDataProcessor processor) |
| |
|
void | CreateDgmlGraph (xiiDGMLGraph &ref_graph) |
| | Creates a DGML graph of all passes and resources. Can be used to verify that no accidental temporary resources 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.
|
| |