You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
25 lines
427 B
25 lines
427 B
#include "../precompiled.hpp" |
|
#include <glm/glm.hpp> |
|
#include <glm/gtc/half_float.hpp> |
|
|
|
namespace glm{ |
|
namespace test |
|
{ |
|
bool main_gtc_half_float() |
|
{ |
|
bool Result = true; |
|
|
|
{ |
|
glm::hvec2 A(1.0f, 3.0f); |
|
glm::half B(2.0f); |
|
glm::hvec2 C = A * B; |
|
glm::hvec2 D = C - glm::hvec2(2.0f); |
|
|
|
Result = Result && glm::all(glm::equal(C, glm::hvec2(0.0f, 4.0f))); |
|
} |
|
|
|
return Result; |
|
} |
|
|
|
}//namespace test |
|
}//namespace glm
|
|
|