Example #1
0
 protected virtual void Dispose(bool disposing)
 {
     System.Diagnostics.Debug.WriteLine(String.Format("[OSVR] In Interface.Dispose({0})", disposing));
     if (disposing)
     {
         if (mHandle != null && !mHandle.IsInvalid)
         {
             mHandle.Dispose();
             mHandle = null;
         }
     }
 }
Example #2
0
 public extern static Byte osvrClientGetViewerEyeSurfaceProjectionClippingPlanes(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface,
     out double left, out double right, out double bottom, out double top);
Example #3
0
 public extern static Byte osvrClientGetViewerEyeSurfaceDisplayInputIndex(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface, out DisplayInputCount displayInput);
Example #4
0
 public extern static Byte osvrClientGetNumSurfacesForViewerEye(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, out SurfaceCount surfaces);
Example #5
0
 public extern static Byte osvrClientGetViewerEyePose(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, out Pose3 pose);
Example #6
0
 public extern static Byte osvrClientGetNumViewers(SafeDisplayConfigHandle display, out ViewerCount viewers);
Example #7
0
 public extern static Byte osvrClientGetNumDisplayInputs(SafeDisplayConfigHandle display, out DisplayInputCount numDisplayInputs);
Example #8
0
 public extern static Byte osvrClientCheckDisplayStartup(SafeDisplayConfigHandle context);
Example #9
0
 public extern static Byte osvrClientGetNumSurfacesForViewerEye(SafeDisplayConfigHandle display,
                                                                ViewerCount viewer, EyeCount eye, out SurfaceCount surfaces);
Example #10
0
 public extern static Byte osvrClientGetViewerEyeViewMatrixf(SafeDisplayConfigHandle display,
                                                             ViewerCount viewer, EyeCount eye, MatrixConventionsFlags flags, out Matrix44f mat);
Example #11
0
 public extern static Byte osvrClientGetViewerEyePose(SafeDisplayConfigHandle display,
                                                      ViewerCount viewer, EyeCount eye, out Pose3 pose);
Example #12
0
 public extern static Byte osvrClientGetNumEyesForViewer(SafeDisplayConfigHandle display,
                                                         ViewerCount viewer, out EyeCount eyes);
Example #13
0
 public extern static Byte osvrClientGetNumViewers(SafeDisplayConfigHandle display, out ViewerCount viewers);
Example #14
0
 public extern static Byte osvrClientGetDisplayDimensions(SafeDisplayConfigHandle display,
                                                          DisplayInputCount displayInputIndex, out DisplayDimension width, out DisplayDimension height);
Example #15
0
 public extern static Byte osvrClientGetNumDisplayInputs(SafeDisplayConfigHandle display, out DisplayInputCount numDisplayInputs);
Example #16
0
 public extern static Byte osvrClientGetViewerEyeSurfaceRadialDistortionPriority(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface, out DistortionPriority priority);
Example #17
0
 internal DisplayConfig(SafeDisplayConfigHandle handle)
 {
     mHandle = handle;
 }
Example #18
0
 public extern static Byte osvrClientGetRelativeViewportForViewerEyeSurface(SafeDisplayConfigHandle display,
                                                                            ViewerCount viewer, EyeCount eye, SurfaceCount surface,
                                                                            out ViewportDimension left, out ViewportDimension bottom, out ViewportDimension width, out ViewportDimension height);
Example #19
0
 public extern static Byte osvrClientCheckDisplayStartup(SafeDisplayConfigHandle context);
Example #20
0
 public extern static Byte osvrClientGetViewerEyeSurfaceDisplayInputIndex(SafeDisplayConfigHandle display,
                                                                          ViewerCount viewer, EyeCount eye, SurfaceCount surface, out DisplayInputCount displayInput);
Example #21
0
 public extern static Byte osvrClientGetDisplayDimensions(SafeDisplayConfigHandle display,
     DisplayInputCount displayInputIndex, out DisplayDimension width, out DisplayDimension height);
Example #22
0
 public extern static Byte osvrClientGetViewerEyeSurfaceProjectionMatrixf(SafeDisplayConfigHandle display,
                                                                          ViewerCount viewer, EyeCount eye, SurfaceCount surface, float near, float far,
                                                                          MatrixConventionsFlags flags, out Matrix44f matrix);
Example #23
0
 public extern static Byte osvrClientGetNumEyesForViewer(SafeDisplayConfigHandle display,
     ViewerCount viewer, out EyeCount eyes);
Example #24
0
 public extern static Byte osvrClientGetViewerEyeSurfaceProjectionClippingPlanes(SafeDisplayConfigHandle display,
                                                                                 ViewerCount viewer, EyeCount eye, SurfaceCount surface,
                                                                                 out double left, out double right, out double bottom, out double top);
Example #25
0
 public extern static Byte osvrClientGetViewerEyeViewMatrixf(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, MatrixConventionsFlags flags, out Matrix44f mat);
Example #26
0
 public extern static Byte osvrClientDoesViewerEyeSurfaceWantDistortion(SafeDisplayConfigHandle display,
                                                                        ViewerCount viewer, EyeCount eye, SurfaceCount surface, [MarshalAs(UnmanagedType.I1)] out bool distortionRequested);
Example #27
0
 public extern static Byte osvrClientGetRelativeViewportForViewerEyeSurface(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface,
     out ViewportDimension left, out ViewportDimension bottom, out ViewportDimension width, out ViewportDimension height);
Example #28
0
 public extern static Byte osvrClientGetViewerEyeSurfaceRadialDistortionPriority(SafeDisplayConfigHandle display,
                                                                                 ViewerCount viewer, EyeCount eye, SurfaceCount surface, out DistortionPriority priority);
Example #29
0
 public extern static Byte osvrClientGetViewerEyeSurfaceProjectionMatrixf(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface, float near, float far,
     MatrixConventionsFlags flags, out Matrix44f matrix);
Example #30
0
 public extern static Byte osvrClientGetViewerEyeSurfaceRadialDistortion(SafeDisplayConfigHandle display,
                                                                         ViewerCount viewer, EyeCount eye, SurfaceCount surface, out RadialDistortionParameters distortionParams);
Example #31
0
 public extern static Byte osvrClientDoesViewerEyeSurfaceWantDistortion(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface, [MarshalAs(UnmanagedType.I1)]out bool distortionRequested);
Example #32
0
 internal DisplayConfig(SafeDisplayConfigHandle handle)
 {
     mHandle = handle;
 }
Example #33
0
 public extern static Byte osvrClientGetViewerEyeSurfaceRadialDistortion(SafeDisplayConfigHandle display,
     ViewerCount viewer, EyeCount eye, SurfaceCount surface, out RadialDistortionParameters distortionParams);
Example #34
0
 public extern static Byte osvrClientGetDisplay(SafeClientContextHandle context, out SafeDisplayConfigHandle display);
Example #35
0
 protected virtual void Dispose(bool disposing)
 {
     System.Diagnostics.Debug.WriteLine(String.Format("[OSVR] In Interface.Dispose({0})", disposing));
     if (disposing)
     {
         if (mHandle != null && !mHandle.IsInvalid)
         {
             mHandle.Dispose();
             mHandle = null;
         }
     }
 }
Example #36
0
 public extern static Byte osvrClientGetDisplay(SafeClientContextHandle context, out SafeDisplayConfigHandle display);