Searched defs:color_traits (Results 1 – 5 of 5) sorted by relevance
36 template <> struct color_traits< two_bit_color_type > struct38 static two_bit_color_type white() { return two_bit_white; } in white()39 static two_bit_color_type gray() { return two_bit_gray; } in gray()40 static two_bit_color_type green() { return two_bit_green; } in green()41 static two_bit_color_type black() { return two_bit_black; } in black()
35 template <> struct color_traits< one_bit_color_type > struct37 static one_bit_color_type white() { return one_bit_white; } in white()38 static one_bit_color_type gray() { return one_bit_not_white; } in gray()39 static one_bit_color_type black() { return one_bit_not_white; } in black()
42 template < class ColorValue > struct color_traits struct44 static default_color_type white() { return white_color; } in white()45 static default_color_type gray() { return gray_color; } in gray()46 static default_color_type green() { return green_color; } in green()47 static default_color_type red() { return red_color; } in red()48 static default_color_type black() { return black_color; } in black()
295 template <> struct color_traits< color_value_archetype > struct297 static color_value_archetype white() in white()302 static color_value_archetype gray() in gray()307 static color_value_archetype black() in black()
66 color_traits; in operator ()() typedef