Rust 用于 Skia 图形库的绑定
Skia Submodule Status: chrome/m153 (upstream changes, our changes).
This project provides up to date safe bindings that bridge idiomatic Rust with Skia's C++ API on desktop and mobile platforms, including GPU rendering backends for Vulkan, Metal, OpenGL, and Direct3D.
The skia-safe API documentation is available on docs.rs.
A prerelease crate is available from crates.io. To get started, run
cargo add skia-safe
in your project's folder. And you might want to take a look at the gl-window example if you plan to render to a window.
Because building Skia takes a lot of time and needs tools that may be missing, the skia-bindings crate's build.rs attempts to download prebuilt binaries from the skia-binaries repository using the curl command line tool.
| Platform | Binaries |
|---|---|
| Windows | x86_64-pc-windows-msvcaarch64-pc-windows-msvc |
| Linux Ubuntu 16+ CentOS 7, 8 |
x86_64-unknown-linux-gnuaarch64-unknown-linux-gnu |
| macOS | x86_64-apple-darwinaarch64-apple-darwin |
| Android | aarch64-linux-androidx86_64-linux-android |
| iOS | aarch64-apple-iosaarch64-apple-ios-simx86_64-apple-ios |
| WebAssembly | wasm32-unknown-emscripten |
The supported wrappers, Skia codecs, and additional Skia features are documented in the skia-safe package's readme. Prebuilt binaries are available for most feature combinations.
If the target platform or feature configuration is not available as a prebuilt binary, skia-bindings' build.rs will try to build Skia and generate the Rust bindings.
For building Skia from source, LLVM, Python 3, and Ninja are required:
LLVM
We recommend the version that comes preinstalled with your platform, or, if not available, the latest official LLVM release. To see which version of LLVM/Clang is installed on your system, use clang --version.
Python 3
The build script probes for python --version and python3 --version and uses the first one that looks like a version 3 executable for building Skia.
Ninja
The build system for Skia. ninja is available as a binary package on all major platforms. Install ninja or ninja-build and make sure it is in your PATH with ninja --version.
Install the Command Line Tools for Xcode with
xcode-select --install
or download and install the Command Line Tools for Xcode.
As an alternative to Apple's Xcode LLVM, install LLVM via brew install llvm and then set PATH, CPPFLAGS, and LDFLAGS as instructed.
If the environment variables are not set, bindgen will most likely use the wrong libclang.dylib and cause confusing compilation errors (see #228).
Have the latest versions of git and Rust ready.
Install Visual Studio 2022 Build Tools or one of the other IDE editions. If you installed the IDE, make sure that the Desktop Development with C++ workload is installed.
Install the latest LLVM distribution.
If the environment variable LLVM_HOME is not defined, the build script will look for LLVM installations located at C:\Program Files\LLVM\, C:\LLVM\, and %USERPROFILE%\scoop\apps\llvm\current\.
pacman -S python.Windows Shell (Cmd.exe):
Install and select the MSVC toolchain:
rustup default stable-msvc
libgl1-mesa-dev.x11.libwayland-dev and build with the wayland feature.Cross compilation to Android is supported for targeting 64 bit ARM and Intel x86 architectures (aarch64 and x86_64) for API Level 26 (Oreo, Android 8):
We recommend using cargo apk, but if that does not work for you, following are some instructions on how we build Android targets with GitHub Actions:
For example, to compile for aarch64:
rustup target install aarch64-linux-android
aarch64-linux-android target:On macOS:
export ANDROID_NDK=:path-to-android-ndk-r26d
export PATH=$PATH:$ANDROID_NDK/toolchains/llvm/prebuilt/darwin-x86_64/bin
export CC_aarch64_linux_android=aarch64-linux-android26-clang
export CXX_aarch64_linux_android=aarch64-linux-android26-clang++
export AR_aarch64_linux_android=llvm-ar
export CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android26-clang
cargo build -vv --target aarch64-linux-android
We don't support Apple's Clang to build for Android on macOS, so you need to install LLVM and set the PATH like instructed.
On Linux:
export ANDROID_NDK=:path-to-android-ndk-r26d
export PATH=$PATH:$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin
export CC_aarch64_linux_android=aarch64-linux-android26-clang
export CXX_aarch64_linux_android=aarch64-linux-android26-clang++
export AR_aarch64_linux_android=llvm-ar
export CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android26-clang
cargo build -vv --target aarch64-linux-android
On Windows the Android NDK Clang executable must be invoked through .cmd scripts:
export ANDROID_NDK=:path-to-android-ndk-r26d
export PATH=$PATH:$ANDROID_NDK/toolchains/llvm/prebuilt/windows-x86_64/bin
export CC_aarch64_linux_android=aarch64-linux-android26-clang.cmd
export CXX_aarch64_linux_android=aarch64-linux-android26-clang++.cmd
export AR_aarch64_linux_android=llvm-ar
export CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android26-clang.cmd
cargo build -vv --target aarch64-linux-android
Notes:
-lgcc argument to the linker, which results in a linker error, because newer NDKs do not contain libgcc.a anymore. To fix this, we created a workaround and copy libunwind.a over to libgcc.a. Cargo apk does something similar.CARGO_TARGET_${TARGET}_LINKER environment variable name needs to be all uppercase.ANDROID_NDK variable must be defined before it's used in the PATH variable.touch skia-bindings/build.rs will force a rebuild (#10).Compilation to iOS is supported on macOS targeting the iOS simulator (--target x86_64-apple-ios) and 64 bit ARM devices (--target aarch64-apple-ios). The ARM64e architecture is not supported yet.
Compilation to visionOS is supported on macOS targeting visionOS devices (--target aarch64-apple-visionos) and the visionOS simulator (--target aarch64-apple-visionos-sim). These are Rust tier 3 targets, so a nightly toolchain and -Z build-std are required, and the visionOS SDK must be installed via Xcode. Skia itself has no dedicated visionOS configuration, so it is built using its iOS code paths against the visionOS (xros) SDK. Prebuilt binaries are not provided; Skia is built from source. Only Metal is available as a GPU backend (visionOS has no OpenGL).
Install emscripten version 3.1.57 or newer and make sure that llvm / clang 16+ is installed. In the examples below, we assume
emsdk version 3.1.57 was installed with asdf.
Build with the wasm32-unknown-emscripten target (wasm32-unknown-unknown is
unsupported because it is fundamentally incompatible with linking C code:
export EMSDK=~/.asdf/installs/emsdk/3.1.57
export EMCC_CFLAGS="-s ERROR_ON_UNDEFINED_SYMBOLS=0"
cargo build --target wasm32-unknown-emscripten
The EMSDK environment variable must be set to the root of your emscripten SDK.
In EMCC_CFLAGS, -s ERROR_ON_UNDEFINED_SYMBOLS is a
workaround to build with
emscripten > 2.0.9.
If you want to enable WebGL, you will also have to set MAX_WEBGL_VERSION=2:
export EMSDK=~/.asdf/installs/emsdk/3.1.57
export EMCC_CFLAGS="-s ERROR_ON_UNDEFINED_SYMBOLS=0 -s MAX_WEBGL_VERSION=2"
cargo build --target wasm32-unknown-emscripten --features gl
On macOS there is a problem with the OS version of ar so you will have to install the GNU version from homebrew:
brew install binutils
Then prepend the binutils path to PATH. The path depends on your CPU
architecture, and can be retrieved with brew info binutils. Here is an
example for Apple silicon:
export EMSDK=~/.asdf/installs/emsdk/3.1.57
export EMCC_CFLAGS="-s ERROR_ON_UNDEFINED_SYMBOLS=0"
export PATH="/opt/homebrew/opt/binutils/bin:$PATH"
cargo build --target wasm32-unknown-emscripten
cargo build is sufficient to build the bindings including Skia. For situations in which Skia does not build or needs to be configured differently, some customization is supported in skia-bindings/build.rs. For more details take a look at the [README of the skia-bindings package](
暂无开放 Issues,或尚未同步最近议题。