mirror of https://github.com/AxioDL/zeus.git
Merge pull request #10 from lioncash/using
CColor: Use using where applicable
This commit is contained in:
commit
f0a7db2282
|
@ -25,16 +25,16 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace zeus {
|
namespace zeus {
|
||||||
typedef uint8_t Comp8;
|
using Comp8 = uint8_t;
|
||||||
typedef uint32_t Comp32;
|
using Comp32 = uint32_t;
|
||||||
constexpr float OneOver255 = 1.f / 255.f;
|
constexpr float OneOver255 = 1.f / 255.f;
|
||||||
|
|
||||||
typedef union {
|
union RGBA32 {
|
||||||
struct {
|
struct {
|
||||||
Comp8 r, g, b, a;
|
Comp8 r, g, b, a;
|
||||||
};
|
};
|
||||||
Comp32 rgba;
|
Comp32 rgba;
|
||||||
} RGBA32;
|
};
|
||||||
|
|
||||||
class CVector4f;
|
class CVector4f;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue