Skip to content

Commit

Permalink
Fixed implicit conversion from another tvec2 type to another tvec2 #241
Browse files Browse the repository at this point in the history
  • Loading branch information
Groovounet committed Oct 5, 2014
1 parent a08aca9 commit 1e389f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion glm/detail/type_vec2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ namespace detail

//! Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification)
template <typename U, precision Q>
GLM_FUNC_DECL tvec2(tvec2<U, Q> const & v);
GLM_FUNC_DECL explicit tvec2(tvec2<U, Q> const & v);
//! Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification)
template <typename U, precision Q>
GLM_FUNC_DECL explicit tvec2(tvec3<U, Q> const & v);
Expand Down
15 changes: 6 additions & 9 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ http://glm.g-truc.net/glm.pdf
================================================================================
GLM 0.9.6.0: 2014-XX-XX
--------------------------------------------------------------------------------
- Fixed std::nextafter not supported with C++11 on Android #217
- Fixed missing value_type for dual quaternion
- Fixed return type of dual quaternion length
- Fixed infinite loop in isfinite function with GCC #221
- Rely on C++11 to implement isinf and isnan
- Added transparent use of SIMD instructions for vec4 and mat4 types
- Removed degrees for function parameters
- Removed GLM_FORCE_RADIANS, active by default
Expand All @@ -50,15 +55,7 @@ GLM 0.9.6.0: 2014-XX-XX
- Improved linearRand: support precision and integers #230
- Added vec3 slerp #237
- Added GTX_common with isdenomal #223

================================================================================
GLM 0.9.5.5: 2014-XX-XX
--------------------------------------------------------------------------------
- Fixed std::nextafter not supported with C++11 on Android #217
- Fixed missing value_type for dual quaternion
- Fixed return type of dual quaternion length
- Fixed infinite loop in isfinite function with GCC #221
- Rely on C++11 to implement isinf and isnan
- Fixed implicit conversion from another tvec2 type to another tvec2 #241

================================================================================
GLM 0.9.5.4: 2014-06-21
Expand Down

0 comments on commit 1e389f8

Please sign in to comment.