00001 // /////////////////////////////////////////////////////////////////////////// 00002 // xrb_color.cpp by Victor Dods, created 2004/07/02 00003 // /////////////////////////////////////////////////////////////////////////// 00004 // Unless a different license was explicitly granted in writing by the 00005 // copyright holder (Victor Dods), this software is freely distributable under 00006 // the terms of the GNU General Public License, version 2. Any works deriving 00007 // from this work must also be released under the GNU GPL. See the included 00008 // file LICENSE for details. 00009 // /////////////////////////////////////////////////////////////////////////// 00010 00011 #include "xrb_color.hpp" 00012 00013 namespace Xrb 00014 { 00015 00016 Color const Color::ms_opaque_white(1.0f, 1.0f, 1.0f, 1.0f); 00017 Color const Color::ms_opaque_black(0.0f, 0.0f, 0.0f, 1.0f); 00018 Color const Color::ms_transparent_black(0.0f, 0.0f, 0.0f, 0.0f); 00019 00020 Color const &Color::ms_identity_color_mask(ms_opaque_white); 00021 Color const &Color::ms_identity_color_bias(ms_transparent_black); 00022 00023 } // end of namespace Xrb