Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor note about matchFamilyStyle that doesn't work #698

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

SergeevPavel
Copy link
Collaborator

No description provided.

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
Member

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

@@ -4,29 +4,31 @@ class FontStyle {
val _value: Int

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
Member

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.

None yet

2 participants