mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Merge GLM 0.9.8
This commit is contained in:
commit
970dff0f2b
@ -54,12 +54,14 @@ namespace detail
|
||||
return _mm_popcnt_u32(x);
|
||||
}
|
||||
|
||||
# if(GLM_MODEL == GLM_MODEL_64)
|
||||
template <>
|
||||
GLM_FUNC_QUALIFIER int bitCount(uint64 x)
|
||||
{
|
||||
return static_cast<int>(_mm_popcnt_u64(x));
|
||||
}
|
||||
# endif
|
||||
# endif//GLM_MODEL
|
||||
# endif//GLM_ARCH
|
||||
|
||||
}//namespace glm
|
||||
|
||||
|
@ -79,6 +79,8 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate)
|
||||
#### Fixes:
|
||||
- Fixed Android build error with C++11 compiler but C++98 STL #284 #564
|
||||
- Fixed GTX_transform2 shear* functions #403
|
||||
- Fixed interaction between GLM_FORCE_UNRESTRICTED_GENTYPE and ortho function #568
|
||||
- Fixed bitCount with AVX on 32 bit builds #567
|
||||
|
||||
---
|
||||
### [GLM 0.9.8.2](https://github.com/g-truc/glm/releases/tag/0.9.8.2) - 2016-11-01
|
||||
|
Loading…
Reference in New Issue
Block a user