goat3dgfx
diff src/goat3dgfx.cc @ 10:b4c9a24c946e
wrote an awesome configure script
added "main" 3d engine source file with global init/cleanup
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 24 Nov 2013 13:30:44 +0200 |
parents | |
children | d061fe1a31ec |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/goat3dgfx.cc Sun Nov 24 13:30:44 2013 +0200 1.3 @@ -0,0 +1,14 @@ 1.4 +#include "goat3dgfx.h" 1.5 + 1.6 +bool init_goat_graphics() 1.7 +{ 1.8 + log_info("initializing goat3d graphics\n"); 1.9 + 1.10 + glewInit(); 1.11 + 1.12 + return true; 1.13 +} 1.14 + 1.15 +void shutdown_goat_graphics() 1.16 +{ 1.17 +}