Optimize ComputerInkBoundingBox(LtoR), remove unnecessary additional branch #10630
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Optimizes
ComputerInkBoundingBox
/ComputerInkBoundingBoxLtoR
methods, collapsing additional branch forTextFormattingMode.Display
intoEmGlyphMetrics
, which now takes a readonlyref
ofGlyphMetrics
to avoid copies.This is one of the hottest methods traditionally when working with glyphs, so it deserves a bit of special care.
EmGlyphMetrics
is just a data container with a bit of logic, and it is kind of imperative that the logic in thector
is actually inlined inside the original method and thestruct
ceases to exist at runtime, otherwise due to the nature of the code, this could get pretty messy at the given JIT state.This gets inlined usually even without forcing it via
AggressiveInlining
but it doesn't hurt to force it in this case, it would hurt in case it didn't get inlined, so we want to prevent that from happening.For 8 glyphs, the difference is already significant:
Customer Impact
Improved performance.
Regression
No.
Testing
Local build, perf benchmarks.
Risk
Imho it is low, we don't change any existing logic.
Microsoft Reviewers: Open in CodeFlow