mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Increase chunk limit for known problematic RID_Owners.
The default limit is fine for most RID_Owners but 3d instances, CanvasItems, and physics bodies need a higher limit. There is a small memory cost to increasing the limit, so it should only be done where needed.
This commit is contained in:
parent
297650a912
commit
941ad15724
5 changed files with 5 additions and 5 deletions
|
|
@ -1031,7 +1031,7 @@ public:
|
|||
|
||||
uint32_t thread_cull_threshold = 200;
|
||||
|
||||
mutable RID_Owner<Instance, true> instance_owner;
|
||||
mutable RID_Owner<Instance, true> instance_owner{ 65536, 4194304 };
|
||||
|
||||
uint32_t geometry_instance_pair_mask = 0; // used in traditional forward, unnecessary on clustered
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue