Description
We had a condition in Impeller where we under-reserved the number of vertices needed to render a shape causing strange path segments to run off the screen. The condition would have been caught by a debug checks in the following locations:
Unfortunately, these checks are not enforced at run-time in any of the run modes that developers use to test their apps, leading to odd rendering artifacts being the only way to know that our estimates had failed.
The problem encountered by a developer was fixed in #170194 but the checks are still not active in runtime engine binaries so the fix will be verified be examining the application output.
These checks should really be made runtime checks (FML_CHECK
) since they ensure that we don't overwrite internal buffers and so that any failure is more immediately brought to proper attention.