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.
34 lines
974 B
34 lines
974 B
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
// 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
|
|
|