Added test files
This commit is contained in:
14
test/gtc/double_float.cpp
Normal file
14
test/gtc/double_float.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/double_float.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_double_float()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
25
test/gtc/half_float.cpp
Normal file
25
test/gtc/half_float.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#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
|
||||
14
test/gtc/matrix_access.cpp
Normal file
14
test/gtc/matrix_access.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/matrix_access.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_matrix_access()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
14
test/gtc/matrix_operation.cpp
Normal file
14
test/gtc/matrix_operation.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/matrix_operation.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_matrix_operation()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
14
test/gtc/matrix_projection.cpp
Normal file
14
test/gtc/matrix_projection.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/matrix_projection.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_matrix_projection()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
14
test/gtc/matrix_transform.cpp
Normal file
14
test/gtc/matrix_transform.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/matrix_transform.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_matrix_transform()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
14
test/gtc/quaternion.cpp
Normal file
14
test/gtc/quaternion.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/quaternion.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_quaternion()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
14
test/gtc/type_precision.cpp
Normal file
14
test/gtc/type_precision.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "../precompiled.hpp"
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtc/type_precision.hpp>
|
||||
|
||||
namespace glm{
|
||||
namespace test
|
||||
{
|
||||
bool main_gtc_type_precision()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}//namespace test
|
||||
}//namespace glm
|
||||
Reference in New Issue
Block a user