-
Notifications
You must be signed in to change notification settings - Fork 54
Enable EGL #68
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
base: main
Are you sure you want to change the base?
Enable EGL #68
Conversation
script/build.py
Outdated
'skia_use_system_icu=false', | ||
'skia_enable_skottie=true' | ||
'skia_enable_skottie=true', | ||
'skia_use_egl=true' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure if this has any side effects for other platforms. Alternatively, I could enable it only for Linux arm64.
I expect that enabling it for all platforms would just increase the binary size.
I think it's better to enable it only for the targets where it's required right now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eymar Alright, now it is enabled only for linuxArm64 target where it is needed.
Hey @eymar, I rebased the PR on main. Could you please check if that resolves the build issues by triggering the workflow? |
@eymar I triggered a run on my fork and it shows no issues: https://github.com/Thomas-Vos/skia-pack/actions/runs/17074207122 |
Approved CI run (Oleksandr is on vacation) |
Required for my linuxArm64 device which only support EGL.
https://youtrack.jetbrains.com/issue/SKIKO-918
I am not sure if this has any side effects for other platforms. Alternatively, I could enable it only for Linux arm64.