| 109 | } |
| 110 | |
| 111 | int main(int argc, char* argv[]) |
| 112 | { |
| 113 | try |
| 114 | { |
| 115 | //Test_PixelOperations(); |
| 116 | //Test_Blit(); |
| 117 | Test_Resize(); |
| 118 | } |
| 119 | catch (const std::exception& e) |
| 120 | { |
| 121 | std::cerr << e.what() << std::endl; |
| 122 | #ifdef _WIN32 |
| 123 | system("pause"); |
| 124 | #endif |
| 125 | } |
| 126 | return 0; |
| 127 | } |
nothing calls this directly
no test coverage detected