This commit is contained in:
RobertoFresca 2016-05-15 23:43:56 -03:00
commit f7f883afaf

View File

@ -32,7 +32,7 @@ public:
inline rgbaint_t(UINT32 rgba) { set(rgba); } inline rgbaint_t(UINT32 rgba) { set(rgba); }
inline rgbaint_t(INT32 a, INT32 r, INT32 g, INT32 b) { set(a, r, g, b); } inline rgbaint_t(INT32 a, INT32 r, INT32 g, INT32 b) { set(a, r, g, b); }
inline rgbaint_t(rgb_t& rgb) { set(rgb); } inline rgbaint_t(rgb_t& rgb) { set(rgb); }
inline rgbaint_t(VECS32 rgba) m_value(rgba) { } inline rgbaint_t(VECS32 rgba) : m_value(rgba) { }
inline void set(rgbaint_t& other) { m_value = other.m_value; } inline void set(rgbaint_t& other) { m_value = other.m_value; }