sdl2/gfx/mod.rs
1//!
2//! A binding for the library `SDL2_gfx`
3//!
4//!
5//! Note that you need to build with the
6//! feature `gfx` for this module to be enabled,
7//! like so:
8//!
9//! ```bash
10//! $ cargo build --features "gfx"
11//! ```
12//!
13//! If you want to use this with from inside your own
14//! crate, you will need to add this in your Cargo.toml
15//!
16//! ```toml
17//! [dependencies.sdl2]
18//! version = ...
19//! default-features = false
20//! features = ["gfx"]
21//! ```
22
23pub mod framerate;
24pub mod imagefilter;
25pub mod primitives;
26pub mod rotozoom;