You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
C++
23 lines
472 B
C++
/******************************************************************************
|
|
* File - definitions.h
|
|
* Author - Joey Pollack
|
|
* Date - 2021/09/14 (y/m/d)
|
|
* Mod Date - 2021/09/14 (y/m/d)
|
|
* Description - Common graphics definitions
|
|
******************************************************************************/
|
|
|
|
#ifndef DEFINITIONS_H_
|
|
#define DEFINITIONS_H_
|
|
|
|
namespace lunarium
|
|
{
|
|
enum ImageFormat
|
|
{
|
|
RGB,
|
|
RGBA,
|
|
BGR,
|
|
BGRA
|
|
};
|
|
}
|
|
|
|
#endif // DEFINITIONS_H_
|