00001 00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) 00004 // Created : 2008-10-28 00005 // Updated : 2008-10-28 00006 // Licence : This source is under MIT License 00007 // File : glm/gtx/color_space_YCoCg.hpp 00009 // Dependency: 00010 // - GLM core 00012 00013 #ifndef glm_gtx_color_space_YCoCg 00014 #define glm_gtx_color_space_YCoCg 00015 00016 // Dependency: 00017 #include "../glm.hpp" 00018 00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext)) 00020 # pragma message("GLM: GLM_GTX_color_space_YCoCg extension included") 00021 #endif 00022 00023 namespace glm{ 00024 namespace gtx{ 00025 namespace color_space_YCoCg 00026 { 00029 00032 template <typename valType> 00033 detail::tvec3<valType> rgb2YCoCg( 00034 detail::tvec3<valType> const & rgbColor); 00035 00038 template <typename valType> 00039 detail::tvec3<valType> YCoCg2rgb( 00040 detail::tvec3<valType> const & YCoCgColor); 00041 00045 template <typename valType> 00046 detail::tvec3<valType> rgb2YCoCgR( 00047 detail::tvec3<valType> const & rgbColor); 00048 00052 template <typename valType> 00053 detail::tvec3<valType> YCoCgR2rgb( 00054 detail::tvec3<valType> const & YCoCgColor); 00055 00057 }//namespace color_space_YCoCg 00058 }//namespace gtx 00059 }//namespace glm 00060 00061 #include "color_space_YCoCg.inl" 00062 00063 namespace glm{using namespace gtx::color_space_YCoCg;} 00064 00065 #endif//glm_gtx_color_space_YCoCg