mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
https://github.com/flutter/engine/pull/24428 attempted to make surface resizing less expensive by using ANGLE's automatic resizing instead of manually destroying and then re-creating the surface. This caused some issues: 1. Flutter's surface size synchronization logic broke: https://github.com/flutter/engine/pull/24682 2. Resizing frameless windows caused the content to wiggle: https://github.com/flutter/flutter/issues/76465 The second issue caused the automatic resizing change to be reverted. However, the first fix was not reverted resulting in an incorrect comment. Relanding this resizing performance improvement is tracked by https://github.com/flutter/flutter/issues/79427