initial commit
[gph-gfx] / test.c
1 #include "gphgfx.h"
2
3 int main(int argc, char **argv)
4 {
5         if(ggfx_init("test", GGFX_INIT_DEBUG) == -1) {
6                 return 1;
7         }
8
9         ggfx_shutdown();
10         return 0;
11 }