1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/*!
A binding for SDL2_gfx.
 */

extern crate libc;
extern crate num;
extern crate sdl2;
extern crate sdl2_sys as sys;
extern crate c_vec;

// Setup linking for all targets.
#[link(name="SDL2_gfx")]
extern {}

pub mod primitives;
pub mod rotozoom;
pub mod framerate;
pub mod imagefilter;