add placeholder 'rgb' module

This commit is contained in:
Gered 2023-03-08 21:08:05 -05:00
parent f0095cf1dc
commit 09ac68df66
3 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,6 @@
//! This module and all sub-modules contain graphics functionality that uses indexed colours. That is, each pixel
//! is a `u8` and treated as index into a [`Palette`], so 256 maximum colours are possible.
pub use self::bitmap::*;
pub use self::blendmap::*;
pub use self::font::*;

View file

@ -4,3 +4,4 @@ pub use self::bitmapatlas::*;
pub mod basicimage;
pub mod bitmapatlas;
pub mod indexed;
pub mod rgb;

View file

@ -0,0 +1,2 @@
//! This module and all sub-modules contain graphics functionality that uses 32-bit colour data. That is, each pixel
//! is a `u32` and contains full RGBA information.