nvfbc-sys 0.2.0

Raw FFI bindings for NVFBC, an NVIDIA API for capturing the front buffer from NVIDIA GPUs.
Documentation
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

cd "$(dirname "$0")"

if ! command -v bindgen >/dev/null;  then
	echo "bindgen not found: you can install it by running: cargo install bindgen"
	exit 1
fi

bindgen ./NvFBC.h -o src/generated.rs