colour: add colour4u and colour3u convenience types

This commit is contained in:
Danny Robson 2015-06-02 22:59:21 +10:00
parent ff23146a68
commit b43a2284fc

View File

@ -46,6 +46,9 @@ namespace util {
};
// Convenience types
typedef colour<3,uint8_t> colour3u;
typedef colour<4,uint8_t> colour4u;
typedef colour<4,float> colour4f;
typedef colour<3,float> colour3f;