func_noise.cpp 741 B

123456789101112131415161718192021222324252627
  1. ///////////////////////////////////////////////////////////////////////////////////////////////////
  2. // OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
  3. ///////////////////////////////////////////////////////////////////////////////////////////////////
  4. // Created : 2008-08-31
  5. // Updated : 2008-08-31
  6. // Licence : This source is under MIT License
  7. // File : test/core/func_noise.cpp
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9. #include "../precompiled.hpp"
  10. #include <glm/core/func_noise.hpp>
  11. namespace glm{
  12. namespace test{
  13. bool test_noise()
  14. {
  15. return true;
  16. }
  17. void main_core_func_noise()
  18. {
  19. assert(test_noise());
  20. }
  21. }//namespace test
  22. }//namespace glm