aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/mod.rs
blob: 411e835caa65d11873acaae303393aeed73b40d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Given 3D points and some camera information, renders to the screen.

pub mod target;

mod buffers;
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::*;