libgoatvr

view src/vr_null.c @ 31:ec6edfe7774c

forgot to add the glext.h file
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 12 Apr 2015 02:02:04 +0300
parents ded3d0a74e19
children
line source
1 #include "vr_impl.h"
3 static int init(void)
4 {
5 return 0;
6 }
8 struct vr_module *vr_module_null(void)
9 {
10 static struct vr_module m;
12 if(!m.init) {
13 m.name = "null";
14 m.init = init;
15 }
16 return &m;
17 }