blob: b570b1287c53fb0719cec1732d585a1db570a63d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//! Given 3D points and some camera information, renders to the screen.
pub mod target;
mod buffers;
mod builders;
pub mod camera;
mod context;
pub mod draw_passes;
mod queue_negotiator;
mod texture;
mod ui;
mod utils;
pub use self::context::RenderingContext;
pub use self::draw_passes::*;
|