Package org.lwjgl.ovr

Class OVRViewScaleDesc

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class OVRViewScaleDesc extends Struct<OVRViewScaleDesc> implements NativeResource
Contains the data necessary to properly calculate position info for various layer types.
  • HmdToEyePose is the same value-pair provided in OVREyeRenderDesc. Modifying this value is suggested only if the app is forcing monoscopic rendering and requires that all layers including quad layers show up in a monoscopic fashion.
  • HmdSpaceToWorldScaleInMeters is used to scale player motion into in-application units.

In other words, it is how big an in-application unit is in the player's physical meters. For example, if the application uses inches as its units then HmdSpaceToWorldScaleInMeters would be 0.0254. Note that if you are scaling the player in size, this must also scale. So if your application units are inches, but you're shrinking the player to half their normal size, then HmdSpaceToWorldScaleInMeters would be 0.0254*2.0.

Layout


 struct ovrViewScaleDesc {
     ovrPosef HmdToEyePose()[ovrEye_Count];
     float HmdSpaceToWorldScaleInMeters();
 }