gfx_types 0.2.0

Core graphics types shared between kernel and userspace - RedstoneOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Buffer Module
//!
//! Buffers de pixels e descritores.

mod descriptor;
mod handle;
mod region;
mod usage;
mod view;

pub use descriptor::BufferDescriptor;
pub use handle::BufferHandle;
pub use region::BufferRegion;
pub use usage::{BufferCapabilities, BufferUsage};
pub use view::{BufferView, BufferViewMut};