mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Applications may try to render paths whose point count exceeds the bounds of a 16-bit index. This PR changes the tessellator to use 32-bit indices when available but will fall back to 16-bit on platforms that do not support it (specifically OpenGL ES implementations without the necessary extension). Fixes https://github.com/flutter/flutter/issues/175031 Fixes https://github.com/flutter/flutter/issues/178022