17 lines
322 B
Rust
17 lines
322 B
Rust
#![deny(warnings)]
|
|
/**
|
|
* Enums / Constants should not be prefixed.
|
|
*
|
|
* GLAD: $GLAD --out-path=$tmp --api="gl:core=" rust
|
|
* COMPILE: cp -r $test_dir/. $tmp && cd $tmp && cargo build
|
|
* RUN: cargo run
|
|
*/
|
|
extern crate glad_gl;
|
|
use glad_gl::gl;
|
|
|
|
#[allow(path_statements)]
|
|
fn main() {
|
|
gl::_1PASS_EXT;
|
|
gl::ALPHA;
|
|
}
|