virglrenderer-sys 0.1.4

Raw FFI bindings for the virglrenderer C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

#[cfg(docsrs)]
mod bindings {
    // committed pre-generated bindings
    include!("bindings.rs");
}

#[cfg(not(docsrs))]
mod bindings {
    // generated by build.rs (bindgen) in normal builds
    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

pub use bindings::*;