1
0
Fork 0
forked from wry/wry
wry/src/render/renderer.rs
Julian Orth 5e8a6eb86f render: split rendering into two phases
In the first phase we collect a list of simple operations (copying
textures and filling rectangles.)

In the second phase we send this list to the graphics API to be
executed.

As part of this, we also remove the use of scissors.
2023-10-22 16:10:12 +02:00

10 lines
210 B
Rust

pub use {context::*, framebuffer::*, image::*, renderer::*, renderer_base::*, texture::*};
mod context;
mod framebuffer;
pub mod gfx_api;
mod gfx_apis;
mod image;
mod renderer;
mod renderer_base;
mod texture;