X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=WCudaMSE%2FAPI_Bilat_GL%2FINC%2FColorf.h;fp=WCudaMSE%2FAPI_Bilat_GL%2FINC%2FColorf.h;h=36e91b549a4709c136633ee3d60946834eab5ced;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/API_Bilat_GL/INC/Colorf.h b/WCudaMSE/API_Bilat_GL/INC/Colorf.h new file mode 100755 index 0000000..36e91b5 --- /dev/null +++ b/WCudaMSE/API_Bilat_GL/INC/Colorf.h @@ -0,0 +1,26 @@ +#ifndef COLOR_F_H +#define COLOR_F_H +#include "envBilatGL.h" + +class CBI_GL Colorf + { + public: + Colorf(float r = 0.0f, float g = 0.0f, float b = 0.0f, float a = 1.0f); + virtual ~Colorf(); + + public: + float r; + float g; + float b; + float a; + + static Colorf RED; + static Colorf BLUE; + static Colorf GREEN; + static Colorf YELLOW; + static Colorf MANGANTA; + static Colorf CYAN; + static Colorf WHITE; + }; + +#endif