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
|
||||
|
||||
namespace zeus {
|
||||
typedef uint8_t Comp8;
|
||||
typedef uint32_t Comp32;
|
||||
using Comp8 = uint8_t;
|
||||
using Comp32 = uint32_t;
|
||||
constexpr float OneOver255 = 1.f / 255.f;
|
||||
|
||||
typedef union {
|
||||
union RGBA32 {
|
||||
struct {
|
||||
Comp8 r, g, b, a;
|
||||
};
|
||||
Comp32 rgba;
|
||||
} RGBA32;
|
||||
};
|
||||
|
||||
class CVector4f;
|
||||
|
||||
|
|
Loading…
Reference in New Issue