Skip to content

minor note about matchFamilyStyle that doesn't work#698

Open
SergeevPavel wants to merge 2 commits intomasterfrom
pavel.sergeev/font_matching
Open

minor note about matchFamilyStyle that doesn't work#698
SergeevPavel wants to merge 2 commits intomasterfrom
pavel.sergeev/font_matching

Conversation

@SergeevPavel
Copy link
Copy Markdown
Collaborator

No description provided.

@SergeevPavel SergeevPavel requested a review from MatkovIvan May 4, 2023 12:21
when `TypefaceFontProvider` is used
`matchFamilyStyle` always returns null,
even if we have an appropriate styles in styleSet returned by `matchFamily`
It should be fixed in skia at some point
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add TODO mark here


constructor(weight: Int, width: Int, slant: FontSlant) {
_value = weight and 65535 or (width and 255 shl 16) or (slant.ordinal shl 24)
_value = (weight and 0xFFFF) or
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add require or similar thing to print readable message in case of overflow?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants