goat3d

diff goatview/src/opengl.c @ 81:7458b8568463

forgot to add opengl.h/c
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 08 May 2014 23:05:29 +0300
parents
children 07c0ec4a410d
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/goatview/src/opengl.c	Thu May 08 23:05:29 2014 +0300
     1.3 @@ -0,0 +1,8 @@
     1.4 +#include <string.h>
     1.5 +#include "opengl.h"
     1.6 +
     1.7 +int init_opengl(void)
     1.8 +{
     1.9 +	glewInit();
    1.10 +	return 0;
    1.11 +}