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.
10 lines
210 B
Rust
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;
|