8 lines
128 B
Rust
8 lines
128 B
Rust
|
|
//! 图形后端 trait 定义
|
||
|
|
//!
|
||
|
|
//! Graphics backend trait definitions.
|
||
|
|
|
||
|
|
pub mod backend;
|
||
|
|
pub mod platform;
|
||
|
|
pub mod renderer;
|