예제 #1
0
파일: HMD.cs 프로젝트: kobush/RiftDotNet
 public bool CreateDistortionMesh(IEyeDesc eyeDesc, uint distortionCaps,
     out Vector2[] uvScaleOffsetOut, out IDistortionMesh meshData)
 {
     return _resources.Device.CreateDistortionMesh(eyeDesc, distortionCaps,
         out uvScaleOffsetOut, out meshData);
 }
예제 #2
0
파일: HMD.cs 프로젝트: kobush/RiftDotNet
 public IEyeRenderDesc GetEyeRenderSettings(IEyeDesc eye)
 {
     return _resources.Device.GetEyeRenderSettings(eye);
 }
예제 #3
0
파일: HMD.cs 프로젝트: kobush/RiftDotNet
 public bool ConfigureOpenGlRendering(
     uint hmdCaps,
     uint distortionCaps,
     IntPtr window,
     IEyeDesc[] eyeDescIn,
     out IEyeRenderDesc[] eyeRenderDescOut)
 {
     return _resources.Device.ConfigureOpenGlRendering(hmdCaps, distortionCaps,
         window, eyeDescIn, out eyeRenderDescOut);
 }