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