You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Add dependency detection improvements to the render graph.
- Buffers changing their usage are no longer treated as write usage unless the API requires it. - Draw lists are not treated as being dependent on each other if their regions do not intersect despite both being write commands. - Particles were tweaked to use different unused buffers to reduce dependencies.
This commit is contained in:
@@ -376,6 +376,8 @@ uint64_t RenderingDeviceDriver::api_trait_get(ApiTrait p_trait) {
|
||||
return true;
|
||||
case API_TRAIT_USE_GENERAL_IN_COPY_QUEUES:
|
||||
return false;
|
||||
case API_TRAIT_BUFFERS_REQUIRE_TRANSITIONS:
|
||||
return false;
|
||||
default:
|
||||
ERR_FAIL_V(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user