libgoatvr

view src/vr_null.c @ 19:437fe32ac633

ops... wasn't handling the stereo eye separation correctly. also fixed a bug in vr_libovr.c causing an assertion inside LibOVR when ovrHmd_GetEyePose was called as a result of calls to view_rotation or view_translation outside of vr_begin/vr_end
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 04 Oct 2014 03:39:14 +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 }