summaryrefslogtreecommitdiffstats
path: root/servers/rendering/rendering_device_graph.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove tracking logic for input attachments as it's not necessary.Dario2024-02-211-9/+0
|
* Add validation to render graph for draw and compute lists.Dario2024-02-141-0/+12
|
* Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-121-12/+17
| | | | RenderingDeviceDriver.
* Improve stage and slice tracking behavior of RenderingDeviceGraph to fix ↵Dario2024-01-261-57/+138
| | | | various synchronization issues.
* Fix memory leak from not clearing the buffer barrier vector properly on the ↵Dario2024-01-181-0/+1
| | | | render graph.
* Acyclic Command Graph for RenderingDevice.Dario2024-01-081-0/+1930
Adds a new system to automatically reorder commands, perform layout transitions and insert synchronization barriers based on the commands issued to RenderingDevice.