00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_gradient_paint
00014 #define glm_gtx_gradient_paint
00015
00016
00017 #include "../glm.hpp"
00018 #include "../gtx/optimum_pow.hpp"
00019
00020 namespace glm
00021 {
00022 namespace test{
00023 void main_gtx_gradient_paint();
00024 }
00025
00026 namespace gtx{
00028 namespace gradient_paint
00029 {
00030 using namespace gtx::optimum_pow;
00031
00032 template <typename valType>
00033 valType radialGradient(
00034 glm::detail::tvec2<valType> const & Center,
00035 valType const & Radius,
00036 glm::detail::tvec2<valType> const & Focal,
00037 glm::detail::tvec2<valType> const & Position);
00038
00039 template <typename valType>
00040 valType linearGradient(
00041 glm::detail::tvec2<valType> const & Point0,
00042 glm::detail::tvec2<valType> const & Point1,
00043 glm::detail::tvec2<valType> const & Position);
00044
00045 }
00046 }
00047 }
00048
00049 #define GLM_GTX_gradient_paint namespace gtx::gradient_paint
00050 #ifndef GLM_GTX_GLOBAL
00051 namespace glm {using GLM_GTX_gradient_paint;}
00052 #endif//GLM_GTX_GLOBAL
00053
00054 #include "gradient_paint.inl"
00055
00056 #endif//glm_gtx_gradient_paint