ableos_userland/libraries/able_graphics_library/src/engine3d/buffer.rs

23 lines
235 B
Rust

pub enum BufferUsage {
Vertex,
}
use alloc::vec::Vec;
use super::error::GPUError;
#[repr(C)]
pub struct XYZ {
x: f64,
y: f64,
z: f64,
}
#[repr(C)]
pub struct XYZW {
x: f64,
y: f64,
z: f64,
w: f64,
}