Search Issue Tracker
Duplicate
Votes
1
Found in
5.3.5p6
Issue ID
814109
Regression
No
[Android] View is briefly corrupted after rotating device if main thread is busy
Reproduction steps
-------------------------
1) Open user's project
2) Build and run
3) Rotate from portrait to landscape
--- For a brief moment the view will become corrupted (see attached image)
--- Looks different with GLES2 and GLES3, but the same issue is present
This happens because the following function is called on Update:
void SimulateWork()
{
float dt = 0f;
float prev = Time.realtimeSinceStartup;
while (dt < 2f)
{
dt += Time.realtimeSinceStartup - prev;
prev = Time.realtimeSinceStartup;
}
}
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
- The Game view and Scene view fail to render when launching the Editor with a maximized Render Graph Viewer window
- "List is empty" is poorly visible in the "Create Node" window
- [Android] GameObject with a custom shader becomes invisible when deployed with the Vulkan Graphics API
- “ReferenceError: Pointer_stringify is not defined” error is thrown when downloading a file
- GameObjects are not rendered when using a fragment shader with RWStructuredBuffer in URP
This is a duplicate of issue #785610