summaryrefslogtreecommitdiff
path: root/src/glm/gtx/gradient_paint.hpp
blob: 389600a61d420db052cd5951cfe104500e703dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2009-03-06
// Updated : 2009-03-09
// Licence : This source is under MIT License
// File    : glm/gtx/gradient_paint.hpp
///////////////////////////////////////////////////////////////////////////////////////////////////
// Dependency:
// - GLM core
///////////////////////////////////////////////////////////////////////////////////////////////////

#ifndef glm_gtx_gradient_paint
#define glm_gtx_gradient_paint

// Dependency:
#include "../glm.hpp"
#include "../gtx/optimum_pow.hpp"

#if(defined(GLM_MESSAGES) && !defined(glm_ext))
#	pragma message("GLM: GLM_GTX_gradient_paint extension included")
#endif

namespace glm{
namespace gtx{
namespace gradient_paint ///< GLM_GTX_gradient_paint extension: Compute a radient gradient according section OpenVG 1.1 specifications, 9.3.2 Radial Gradients
{
	using namespace gtx::optimum_pow;

	/// \addtogroup gtx_gradient_paint
	/// @{

	template <typename valType>
	valType radialGradient(
		glm::detail::tvec2<valType> const & Center,
		valType const & Radius,
		glm::detail::tvec2<valType> const & Focal,
		glm::detail::tvec2<valType> const & Position);

	template <typename valType>
	valType linearGradient(
		glm::detail::tvec2<valType> const & Point0,
		glm::detail::tvec2<valType> const & Point1,
		glm::detail::tvec2<valType> const & Position);

	/// @}
}// namespace gradient_paint
}// namespace gtx
}// namespace glm

#include "gradient_paint.inl"

namespace glm{using namespace gtx::gradient_paint;}

#endif//glm_gtx_gradient_paint