mirror of
https://github.com/g-truc/glm.git
synced 2024-11-26 18:24:35 +00:00
Change the value_type of simdVec4 and simdQuat to a float
- Having it as __m128 didn't quite feel consistent with vec4/quat
This commit is contained in:
parent
4aa385a37a
commit
c2b4e2a5c0
@ -69,7 +69,7 @@ namespace detail
|
||||
{
|
||||
GLM_ALIGNED_STRUCT(16) fquatSIMD
|
||||
{
|
||||
typedef __m128 value_type;
|
||||
typedef float value_type;
|
||||
typedef std::size_t size_type;
|
||||
static size_type value_size();
|
||||
|
||||
|
@ -92,7 +92,7 @@ namespace detail
|
||||
/// \ingroup gtx_simd_vec4
|
||||
GLM_ALIGNED_STRUCT(16) fvec4SIMD
|
||||
{
|
||||
typedef __m128 value_type;
|
||||
typedef float value_type;
|
||||
typedef std::size_t size_type;
|
||||
static size_type value_size();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user