glm/test/img.cpp
Christophe Riccio 3cb1965573 Added test files
2010-04-29 16:54:07 +01:00

35 lines
974 B
C++

///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2009-10-27
// Updated : 2009-10-27
// Licence : This source is under MIT License
// File : test/glm/img.cpp
///////////////////////////////////////////////////////////////////////////////////////////////////
// Dependency:
// - GLM core
///////////////////////////////////////////////////////////////////////////////////////////////////
#include "img.hpp"
#include <glm/img/multiple.hpp>
#include <glm/img/wrap.hpp>
namespace glm{
namespace test
{
bool main_img()
{
bool Success = true;
Success = Success && main_img_multiple();
assert(Success);
Success = Success && main_img_wrap();
assert(Success);
return Success;
}
}//namespace test
}//namespace glm