nvngx 0.3.2

NVIDIA NGX bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
//! The NGX-rs is a crate carefully wrapping the NVIDIA NGX library,
//! providing some abstractions in order to make the use easier.
#![deny(missing_docs)]

pub mod vk;
pub use vk::*;

pub use nvngx_sys as sys;

pub use sys::Error;