Files
axyz/include/Engine/Rendering/Image.h
T
2015-11-30 11:16:43 +01:00

20 lines
243 B
C

#ifndef Image_h
#define Image_h
struct Image
{
enum class ImageFormat
{
Unknown,
RGB,
RGBA
};
unsigned int Width = 0;
unsigned int Height = 0;
ImageFormat Format = ImageFormat::Unknown;
unsigned char* Data = nullptr;
};
#endif