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:
- Clone the repository on a riscv64 machine.
- Run the build command specific to wgpu.
- Observe that while wgpu compiles successfully, the build fails due to
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.
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_skiacompilation 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_skiadependency.Possible Solution:
Introduce a feature flag that when enabled, excludes
tiny_skiafrom the build process, allowing for wgpu-only operation.