00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_color_space_YCoCg
00014 #define glm_gtx_color_space_YCoCg
00015
00016
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 {
00025 namespace test{
00026 void main_gtx_color_space_YCoCg();
00027 }
00028
00029 namespace gtx{
00031 namespace color_space_YCoCg
00032 {
00035
00038 template <typename valType>
00039 detail::tvec3<valType> rgb2YCoCg(
00040 detail::tvec3<valType> const & rgbColor);
00041
00044 template <typename valType>
00045 detail::tvec3<valType> YCoCg2rgb(
00046 detail::tvec3<valType> const & YCoCgColor);
00047
00051 template <typename valType>
00052 detail::tvec3<valType> rgb2YCoCgR(
00053 detail::tvec3<valType> const & rgbColor);
00054
00058 template <typename valType>
00059 detail::tvec3<valType> YCoCgR2rgb(
00060 detail::tvec3<valType> const & YCoCgColor);
00061
00063 }
00064 }
00065 }
00066
00067 #include "color_space_YCoCg.inl"
00068
00069 namespace glm{using namespace gtx::color_space_YCoCg;}
00070
00071 #endif//glm_gtx_color_space_YCoCg