blob: 4ba38cde0e1ca6d6a24bcf5df9e80cb2aa89b7b4 (
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;
pub mod texture;
mod ui;
mod utils;
pub use self::context::RenderingContext;
pub use self::draw_passes::*;
|