Files
zoom/third-party/glad/test/rust/compile/egl/default/001/test.rs

17 lines
328 B
Rust

#![deny(warnings)]
/**
* Full EGL should compile
*
* GLAD: $GLAD --out-path=$tmp --api="egl=" rust
* COMPILE: cp -r $test_dir/. $tmp && cd $tmp && cargo build
* RUN: cargo run
*/
extern crate glad_egl;
use glad_egl::egl;
#[allow(path_statements)]
fn main() {
egl::GetProcAddress;
egl::SwapBuffersWithDamageEXT;
}