@@ -31,31 +31,31 @@ namespace glm
31
31
// /
32
32
// / @see ext_scalar_common
33
33
template <typename T>
34
- GLM_FUNC_DECL T min (T a, T b, T c);
34
+ GLM_FUNC_DECL T ( min) (T a, T b, T c);
35
35
36
36
// / Returns the minimum component-wise values of 4 inputs
37
37
// /
38
38
// / @tparam T A floating-point scalar type.
39
39
// /
40
40
// / @see ext_scalar_common
41
41
template <typename T>
42
- GLM_FUNC_DECL T min (T a, T b, T c, T d);
42
+ GLM_FUNC_DECL T ( min) (T a, T b, T c, T d);
43
43
44
44
// / Returns the maximum component-wise values of 3 inputs
45
45
// /
46
46
// / @tparam T A floating-point scalar type.
47
47
// /
48
48
// / @see ext_scalar_common
49
49
template <typename T>
50
- GLM_FUNC_DECL T max (T a, T b, T c);
50
+ GLM_FUNC_DECL T ( max) (T a, T b, T c);
51
51
52
52
// / Returns the maximum component-wise values of 4 inputs
53
53
// /
54
54
// / @tparam T A floating-point scalar type.
55
55
// /
56
56
// / @see ext_scalar_common
57
57
template <typename T>
58
- GLM_FUNC_DECL T max (T a, T b, T c, T d);
58
+ GLM_FUNC_DECL T ( max) (T a, T b, T c, T d);
59
59
60
60
// / Returns the minimum component-wise values of 2 inputs. If one of the two arguments is NaN, the value of the other argument is returned.
61
61
// /
@@ -64,7 +64,7 @@ namespace glm
64
64
// / @see <a href="http://en.cppreference.com/w/cpp/numeric/math/fmin">std::fmin documentation</a>
65
65
// / @see ext_scalar_common
66
66
template <typename T>
67
- GLM_FUNC_DECL T fmin (T a, T b);
67
+ GLM_FUNC_DECL T ( fmin) (T a, T b);
68
68
69
69
// / Returns the minimum component-wise values of 3 inputs. If one of the two arguments is NaN, the value of the other argument is returned.
70
70
// /
@@ -73,7 +73,7 @@ namespace glm
73
73
// / @see <a href="http://en.cppreference.com/w/cpp/numeric/math/fmin">std::fmin documentation</a>
74
74
// / @see ext_scalar_common
75
75
template <typename T>
76
- GLM_FUNC_DECL T fmin (T a, T b, T c);
76
+ GLM_FUNC_DECL T ( fmin) (T a, T b, T c);
77
77
78
78
// / Returns the minimum component-wise values of 4 inputs. If one of the two arguments is NaN, the value of the other argument is returned.
79
79
// /
@@ -82,7 +82,7 @@ namespace glm
82
82
// / @see <a href="http://en.cppreference.com/w/cpp/numeric/math/fmin">std::fmin documentation</a>
83
83
// / @see ext_scalar_common
84
84
template <typename T>
85
- GLM_FUNC_DECL T fmin (T a, T b, T c, T d);
85
+ GLM_FUNC_DECL T ( fmin) (T a, T b, T c, T d);
86
86
87
87
// / Returns the maximum component-wise values of 2 inputs. If one of the two arguments is NaN, the value of the other argument is returned.
88
88
// /
@@ -91,7 +91,7 @@ namespace glm
91
91
// / @see <a href="http://en.cppreference.com/w/cpp/numeric/math/fmax">std::fmax documentation</a>
92
92
// / @see ext_scalar_common
93
93
template <typename T>
94
- GLM_FUNC_DECL T fmax (T a, T b);
94
+ GLM_FUNC_DECL T ( fmax) (T a, T b);
95
95
96
96
// / Returns the maximum component-wise values of 3 inputs. If one of the two arguments is NaN, the value of the other argument is returned.
97
97
// /
@@ -100,7 +100,7 @@ namespace glm
100
100
// / @see <a href="http://en.cppreference.com/w/cpp/numeric/math/fmax">std::fmax documentation</a>
101
101
// / @see ext_scalar_common
102
102
template <typename T>
103
- GLM_FUNC_DECL T fmax (T a, T b, T C);
103
+ GLM_FUNC_DECL T ( fmax) (T a, T b, T C);
104
104
105
105
// / Returns the maximum component-wise values of 4 inputs. If one of the two arguments is NaN, the value of the other argument is returned.
106
106
// /
@@ -109,7 +109,7 @@ namespace glm
109
109
// / @see <a href="http://en.cppreference.com/w/cpp/numeric/math/fmax">std::fmax documentation</a>
110
110
// / @see ext_scalar_common
111
111
template <typename T>
112
- GLM_FUNC_DECL T fmax (T a, T b, T C, T D);
112
+ GLM_FUNC_DECL T ( fmax) (T a, T b, T C, T D);
113
113
114
114
// / Returns min(max(x, minVal), maxVal) for each component in x. If one of the two arguments is NaN, the value of the other argument is returned.
115
115
// /
0 commit comments