Initial commit
This commit is contained in:
commit
edfc5298e1
252 changed files with 93965 additions and 0 deletions
12
include/Spectre/Graphics/PixelFormat.h
Normal file
12
include/Spectre/Graphics/PixelFormat.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef SPECTRE_GRAPHICS_PIXELFORMAT_H
|
||||
#define SPECTRE_GRAPHICS_PIXELFORMAT_H
|
||||
|
||||
enum PixelFormat
|
||||
{
|
||||
PF_Unknown = 0,
|
||||
PF_RGB = 1,
|
||||
PF_RGBA = 2,
|
||||
PF_Alpha = 3, // 1 byte alpha channel.
|
||||
};
|
||||
|
||||
#endif SPECTRE_GRAPHICS_PIXELFORMAT_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue