|
| | CompositorPass (const CompositorPassDef *definition, const CompositorChannel &target, CompositorNode *parentNode) |
| |
| virtual | ~CompositorPass () |
| |
| virtual void | _placeBarriersAndEmulateUavExecution (BoundUav boundUavs[64], ResourceAccessMap &uavsAccess, ResourceLayoutMap &resourcesLayout) |
| | Emulates the execution of a UAV to understand memory dependencies, and adds a memory barrier / resource transition if we need to.
|
| |
| void | _removeAllBarriers (void) |
| |
| void | addResourceTransition (ResourceLayoutMap::iterator currentLayout, ResourceLayout::Layout newLayout, uint32 readBarrierBits) |
| |
| virtual void | execute (const Camera *lodCameraconst)=0 |
| |
| const CompositorPassDef * | getDefinition (void) const |
| |
| const CompositorNode * | getParentNode (void) const |
| |
| RenderTarget * | getRenderTarget (void) const |
| |
| const CompositorTexture & | getTargetTexture (void) const |
| |
| const CompositorTextureVec & | getTextureDependencies (void) const |
| |
| CompositorPassType | getType () const |
| |
| Viewport * | getViewport () const |
| |
| virtual void | notifyCleared (void) |
| | @See CompositorNode::_notifyCleared
|
| |
| virtual void | notifyDestroyed (const CompositorChannel &channel) |
| | @See CompositorNode::notifyDestroyed
|
| |
| virtual void | notifyDestroyed (const UavBufferPacked *buffer) |
| |
| virtual void | notifyRecreated (const CompositorChannel &oldChannel, const CompositorChannel &newChannel) |
| | @See CompositorNode::notifyRecreated
|
| |
| virtual void | notifyRecreated (const UavBufferPacked *oldBuffer, UavBufferPacked *newBuffer) |
| |
| void | operator delete (void *ptr) |
| |
| void | operator delete (void *ptr, const char *, int, const char *) |
| |
| void | operator delete (void *ptr, void *) |
| |
| void | operator delete[] (void *ptr) |
| |
| void | operator delete[] (void *ptr, const char *, int, const char *) |
| |
| void * | operator new (size_t sz) |
| |
| void * | operator new (size_t sz, const char *file, int line, const char *func) |
| | operator new, with debug line info
|
| |
| void * | operator new (size_t sz, void *ptr) |
| | placement operator new
|
| |
| void * | operator new[] (size_t sz) |
| |
| void * | operator new[] (size_t sz, const char *file, int line, const char *func) |
| | array operator new, with debug line info
|
| |
| void | profilingBegin (void) |
| |
| void | profilingEnd (void) |
| |
| void | resetNumPassesLeft (void) |
| |
Abstract class for compositor passes.
A pass can be a fullscreen quad, a scene rendering, a clear. etc. Derived classes are responsible for performing an actual job. Note that passes do not own RenderTargets, therefore we're not responsible for destroying it.
- Author
- Matias N. Goldberg
- Version
- 1.0