mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 13:35:03 +00:00
Added test with swizzle operators on both size
This commit is contained in:
parent
c02178c7f9
commit
73e730e45a
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ int test_vec3_swizzle3_3()
|
|||
glm::vec3 v(1, 2, 3);
|
||||
glm::vec3 u;
|
||||
|
||||
u = v;
|
||||
u.xyz = v.xyz;
|
||||
Error += (u.x == 1.0f && u.y == 2.0f && u.z == 3.0f) ? 0 : 1;
|
||||
|
||||
u = v.xyz;
|
||||
|
@ -146,7 +146,7 @@ int test_vec3_swizzle_half()
|
|||
|
||||
float a = u.x;
|
||||
float b = u.y;
|
||||
Error += (u.x == 1.0f && u.y == 2.0f && u.z == 3.0f) ? 0 : 1;
|
||||
Error += (u.x == glm::half(1.0f) && u.y == glm::half(2.0f) && u.z == glm::half(3.0f)) ? 0 : 1;
|
||||
|
||||
/*u = v.xyz;
|
||||
Error += (u.x == 1.0f && u.y == 2.0f && u.z == 3.0f) ? 0 : 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue