Search Issue Tracker
By Design
Votes
1
Found in
5.4.0b21
Issue ID
805310
Regression
No
[Graphics.DrawMesh] triggering "String.memcpy" for massive slowdowns
Reproduction steps:
1. Open attached "stripped" project.
2. Open "EditorMap.scene".
3. Open "Window > Profiler" tab.
4. Enable "Deep Profile".
5. Expand "BehaviourUpdate->VirtualizeScene.Update()->VirtualizeScene.Draw()->Graphics.DrawMesh()" and notice the "String.memcpy"(Picture attached).
-
Arycama
Sep 11, 2019 02:51
This is not fixed in 2019.2.0f1. Most variants of Graphics.DrawMesh call other overloads of Graphics.DrawMesh, which finally calls Graphics.DrawMeshInternal. This causes a string.memcpy to be called for every call, which ends up with 3-4 string.memcpys per frame.
-
holoben22
Jan 02, 2019 21:06
Is there an explanation posted somewhere for why this is by design? Is it an artifact of running the deep profiler? Or does it have something to do with copying data to the GPU in the Graphics.DrawMesh function?
-
Selmar
Jul 09, 2016 02:40
The memcpy and memset together are approximately 80% of the cost for me.
I tried to work around it using CommandBuffers, but I can't get them to work properly, so I'm not even sure if that works with instancing.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
Resolution Note (5.3.7):
Using the last expansion of DrawMesh will result in a performance improvement. Additionally, in 5.4 you can use Standard Surface Shader (Instanced) in order to benefit even more.