ndspy_sys/
lib.rs

1//! This is a thin, auto-generated wrapper around the
2//! [NSI](https://nsi.readthedocs.io/)/[RenderMan®](https://renderman.pixar.com/)
3//! low level display driver C API.
4//! # Documentation
5//! Pixar’s Developer’s Guide for [Display Driver
6//! Plug-Ins](https://renderman.pixar.com/resources/RenderMan_20/dspyNote.html)
7//! has in-depth information on this API that maps 1:1 to Rust.
8//! # Example
9//! For a Rust example demonstrting how to use this see the
10//! [r-display](https://github.com/virtualritz/r-display) crate.
11//!
12#![allow(clippy::all)]
13#![allow(improper_ctypes)]
14#![allow(non_camel_case_types)]
15#![allow(non_upper_case_globals)]
16#![allow(non_snake_case)]
17include!(concat!(env!("OUT_DIR"), "/bindings.rs"));