diff options
Diffstat (limited to 'third_party/rust/renderdoc-sys/src/lib.rs')
-rw-r--r-- | third_party/rust/renderdoc-sys/src/lib.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/rust/renderdoc-sys/src/lib.rs b/third_party/rust/renderdoc-sys/src/lib.rs new file mode 100644 index 0000000000..19791262cb --- /dev/null +++ b/third_party/rust/renderdoc-sys/src/lib.rs @@ -0,0 +1,11 @@ +//! Raw FFI bindings to the RenderDoc API. +//! +//! Refer to the [In-Application API][api] documentation for more details. +//! +//! [api]: https://renderdoc.org/docs/in_application_api.html + +#![allow(non_camel_case_types)] +#![allow(non_snake_case)] +#![allow(non_upper_case_globals)] + +include!("./bindings.rs"); |