From da3bb42db4487dd1401a9038e7e9bb87ecaf303d Mon Sep 17 00:00:00 2001 From: bjorn Date: Tue, 9 Oct 2018 18:03:53 -0700 Subject: [PATCH] Fix WebVR prototype; --- src/headset/webvr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/headset/webvr.c b/src/headset/webvr.c index 4f6861ee..c510f835 100644 --- a/src/headset/webvr.c +++ b/src/headset/webvr.c @@ -16,7 +16,7 @@ extern void webvrGetDisplayDimensions(int32_t* width, int32_t* height); extern void webvrGetClipDistance(float* near, float* far); extern void webvrSetClipDistance(float near, float far); extern void webvrGetBoundsDimensions(float* width, float* depth); -extern const float* webvrGetBoundsDimensions(int* count); +extern const float* webvrGetBoundsGeometry(int* count); extern void webvrGetPose(float* x, float* y, float* z, float* angle, float* ax, float* ay, float* az); extern void webvrGetEyePose(HeadsetEye eye, float* x, float* y, float* z, float* angle, float* ax, float* ay, float* az); extern void webvrGetVelocity(float* x, float* y, float* z);