2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-29 19:42:11 +00:00
Files
gil/test/main.cpp
Lubomir Bourdev 9311679cb0 Initial version of boost/libs/gil
[SVN r37496]
2007-04-24 01:58:42 +00:00

24 lines
528 B
C++

/*
Copyright 2005-2007 Adobe Systems Incorporated
Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt
or a copy at http://opensource.adobe.com/licenses.html)
*/
// main.cpp : Runs all GIL tests.
//
void test_channel();
void test_pixel();
void test_pixel_iterator();
void test_image();
void test_image_io();
void test_gimage();
int main(int argc, unsigned char* argv[]) {
test_pixel();
test_channel();
test_pixel_iterator();
test_image_io();
test_image();
return 0;
}