glm/test/core/func_noise.cpp
Christophe Riccio bc877da307 Added test files
2010-04-14 13:25:41 +01:00

28 lines
741 B
C++

///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2008-08-31
// Updated : 2008-08-31
// Licence : This source is under MIT License
// File : test/core/func_noise.cpp
///////////////////////////////////////////////////////////////////////////////////////////////////
#include "../precompiled.hpp"
#include <glm/core/func_noise.hpp>
namespace glm{
namespace test{
bool test_noise()
{
return true;
}
void main_core_func_noise()
{
assert(test_noise());
}
}//namespace test
}//namespace glm