libgoatvr

view src/vr_null.c @ 18:1067274dc780

fixed the fallback vr_view_translation and vr_view_matrix to include stereo separation
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 03 Oct 2014 23:07:27 +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 }