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
- "Problem detected while importing the Prefab file" errors on Learning Templates import
- Crash on RaiseException during Socket.BeginConnect in Player when application connection is blocked through commercial firewall
- [Linux] Silent crash when generating lighting
- Decal Projector produces artifacts when the normal and decal are projected in negative z-direction and Normal Blend is set to 1
- Undoing slider field change only resets slider position, doesn't undo the value change
This is a duplicate of issue #785610