bevy/crates/bevy_wgpu/src/renderer/mod.rs
Carter Anderson 3d07fbdc81 render: "Immediate Mode" draw api
This replaces Renderable with Draw/RenderPipelines components and makes various aspects of the renderer much simpler and legible
2020-06-09 23:16:48 -07:00

8 lines
204 B
Rust

mod wgpu_render_context;
mod wgpu_render_graph_executor;
mod wgpu_render_resource_context;
pub use wgpu_render_context::*;
pub use wgpu_render_graph_executor::*;
pub use wgpu_render_resource_context::*;