Advertisement
Guest User

Windows 10 UWP 16232 APIs

a guest
Jun 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.58 KB | None | 0 0
  1.  
  2.  MetaDiff v0.1 https://github.com/WalkingCat/MetaDiff
  3.  
  4.  new files: new\*
  5.  old files: old\*
  6.  
  7.  diff legends: +: added, -: removed, *: changed, |: type member changed
  8.  
  9. | public class Windows.Graphics.Holographic.HolographicCamera {
  10. +   public bool IsPrimaryLayerEnabled { get; set; }
  11. +   public uint MaxQuadLayerCount { get; }
  12. +   public IVector<HolographicQuadLayer> QuadLayers { get; }
  13. -   public PresentationLayerDrmMode DrmMode { get; set; }
  14. -   public PresentationLayerConfig CreateLayerConfig();
  15. -   public void SetLayerConfig( PresentationLayerConfig layerConfig );
  16. -   public PresentationLayers GetPresentationLayers();
  17. | }
  18.  
  19. | public class Windows.Graphics.Holographic.HolographicCameraRenderingParameters {
  20. +   public bool IsContentProtectionEnabled { get; set; }
  21. -   public PresentationLayerRenderingParametersQuad GetPresentationLayerRenderingParameters( PresentationLayerQuad result );
  22. | }
  23.  
  24. | public class Windows.Graphics.Holographic.HolographicFrame {
  25. +   public HolographicQuadLayerUpdateParameters GetQuadLayerUpdateParameters( HolographicQuadLayer value );
  26. | }
  27.  
  28. + public class Windows.Graphics.Holographic.HolographicQuadLayer {
  29. +   public DirectXPixelFormat PixelFormat { get; }
  30. +   public Size Size { get; }
  31. +   public HolographicQuadLayer( Size size );
  32. +   public HolographicQuadLayer( Size size, DirectXPixelFormat pixelFormat );
  33. +   public void Close();
  34. + }
  35.  
  36. + public class Windows.Graphics.Holographic.HolographicQuadLayerUpdateParameters {
  37. +   public IDirect3DSurface AcquireBufferToUpdateContent();
  38. +   public void UpdateViewport( Rect value );
  39. +   public void UpdateContentProtectionEnabled( bool value );
  40. +   public void UpdateExtents( Vector2 value );
  41. +   public void UpdateLocationWithStationaryMode( SpatialCoordinateSystem coordinateSystem, Vector3 position, Quaternion orientation );
  42. +   public void UpdateLocationWithDisplayRelativeMode( Vector3 position, Quaternion orientation );
  43. + }
  44.  
  45. - public class Windows.Graphics.Holographic.PresentationLayerConfig;
  46.  
  47. - public enum Windows.Graphics.Holographic.PresentationLayerDrmMode;
  48.  
  49. - public class Windows.Graphics.Holographic.PresentationLayerQuad;
  50.  
  51. - public class Windows.Graphics.Holographic.PresentationLayerReference;
  52.  
  53. - public class Windows.Graphics.Holographic.PresentationLayerRenderingParametersQuad;
  54.  
  55. - public class Windows.Graphics.Holographic.PresentationLayerSettings;
  56.  
  57. - public enum Windows.Graphics.Holographic.PresentationLayerType;
  58.  
  59. - public class Windows.Graphics.Holographic.PresentationLayers;
  60.  
  61. | public enum Windows.UI.Input.Spatial.SpatialInteractionSourceHandedness {
  62. +   Unspecified = 0,
  63. -   Unknown = 0,
  64. -   Both = 3,
  65. | }
  66.  
  67. | public class Windows.UI.Input.Spatial.SpatialInteractionSourceLocation {
  68. +   public SpatialInteractionSourcePositionAccuracy PositionAccuracy { get; }
  69. -   public SpatialInteractionSourcePositionQuality PositionQuality { get; }
  70. | }
  71.  
  72. + public enum Windows.UI.Input.Spatial.SpatialInteractionSourcePositionAccuracy {
  73. +   High = 0,
  74. +   Approximate = 1,
  75. + }
  76.  
  77. - public enum Windows.UI.Input.Spatial.SpatialInteractionSourcePositionQuality;
  78.  
  79. | public class Windows.UI.Input.Spatial.SpatialPointerInteractionSourcePose {
  80. +   public SpatialInteractionSourcePositionAccuracy PositionAccuracy { get; }
  81. -   public SpatialInteractionSourcePositionQuality PositionQuality { get; }
  82. | }
  83.  
  84. + public class Windows.UI.Xaml.Hosting.DesignerAppExitedEventArgs {
  85. +   public uint ExitCode { get; }
  86. + }
  87.  
  88. | public class Windows.UI.Xaml.Hosting.DesignerAppManager {
  89. -   public ulong DuplicateHandleIntoApp( ulong returnValue, bool handle );
  90. | }
  91.  
  92. - public class Windows.UI.Xaml.Hosting.ProcessExitedEventArgs;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement