X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;ds=sidebyside;f=WCudaMSE%2FAPI_Bilat_GL%2FINC%2FColorChar.h;fp=WCudaMSE%2FAPI_Bilat_GL%2FINC%2FColorChar.h;h=c5538d07edf7e2ba45baab7622b711238a1c84c8;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/API_Bilat_GL/INC/ColorChar.h b/WCudaMSE/API_Bilat_GL/INC/ColorChar.h new file mode 100755 index 0000000..c5538d0 --- /dev/null +++ b/WCudaMSE/API_Bilat_GL/INC/ColorChar.h @@ -0,0 +1,28 @@ +#ifndef COLORCHAR_H +#define COLORCHAR_H + +#include "envBilatGL.h" + +class CBI_GL ColorChar + { + public: + + ColorChar(unsigned char r = 0, unsigned char g = 0, unsigned char b = 0, unsigned char a = 0); + + virtual ~ColorChar(); + public: + unsigned char r; + unsigned char g; + unsigned char b; + unsigned char a; + + static ColorChar RED; + static ColorChar BLUE; + static ColorChar GREEN; + static ColorChar YELLOW; + static ColorChar MANGANTA; + static ColorChar CYAN; + static ColorChar WHITE; + }; + +#endif