aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/mod.rs
blob: e802ed5f153e84b6f99f3957f4d795408a93b26c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! 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;
mod pipeline;
mod queue_negotiator;
mod render;
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;