vrseasons

view src/opengl.cc @ 0:393ef1143c9c

VR seasons
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 07 Apr 2015 11:16:56 +0300
parents
children
line source
1 #include "opengl.h"
3 void init_gl()
4 {
5 glewInit();
6 }
8 bool check_extension(const char *name)
9 {
10 return glewIsSupported(name);
11 }