mozangle
mozangle copied to clipboard
eglCreateDeviceANGLE, eglReleaseDeviceANGLE build failed with i686-pc-windows-msvc target
use mozangle::egl::ffi as egl;
fn main() {
let _ = unsafe { egl::eglCreateDeviceANGLE(0, std::ptr::null_mut(), std::ptr::null()) }
}
cargo build --target i686-pc-windows-msvc
output:
error LNK2019: 无法解析的外部符号 _eglCreateDeviceANGLE
Does mozangle support i686-pc-windows-msvc target?
What if you use the build-dlls feature?
build-dlls feature doesn't help.
Try the egl feature as well?
I tried egl feature, unfortunately the same error.