-
Notifications
You must be signed in to change notification settings - Fork 138
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
Ability to Force the Use of wgpu-only Through Feature Flag #123
Comments
Upon investigation, the reason The Is there a way to enforce the use of |
Why can't you just build it with |
This should be fixed once Smithay/drm-rs#176 lands otherwise adding dependency with bindgen feature fixes that as well [dependencies]
drm-sys = { version = "*", features = ["use_bindgen"] } |
Ah, this isn't something I considered when we merged the kms backend in softbuffer. Using softbuffer with |
Description:
On riscv64 platforms, we are able to successfully compile and run wgpu. However, due to issues with the compilation of
tiny_skia
, we are unable to utilize it fully.Steps to Reproduce:
tiny_skia
.Expected Behavior:
The build should succeed and we should be able to run wgpu-only functionality on riscv64.
Actual Behavior:
The build fails due to
tiny_skia
compilation issues, preventing us from using wgpu-only functionality.Additional Information:
It would be beneficial to have a feature flag that allows us to force the use of wgpu-only, bypassing the
tiny_skia
dependency.Possible Solution:
Introduce a feature flag that when enabled, excludes
tiny_skia
from the build process, allowing for wgpu-only operation.The text was updated successfully, but these errors were encountered: