Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gabriel Ivăncescu
wine
Commits
79a7c7ca
Commit
79a7c7ca
authored
2 years ago
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
include: Add windows.perception.spatial.surfaces.idl file.
parent
16b3b791
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/Makefile.in
+1
-0
1 addition, 0 deletions
include/Makefile.in
include/windows.perception.spatial.surfaces.idl
+232
-0
232 additions, 0 deletions
include/windows.perception.spatial.surfaces.idl
with
233 additions
and
0 deletions
include/Makefile.in
+
1
−
0
View file @
79a7c7ca
...
...
@@ -823,6 +823,7 @@ SOURCES = \
windows.media.speechrecognition.idl
\
windows.media.speechsynthesis.idl
\
windows.perception.spatial.idl
\
windows.perception.spatial.surfaces.idl
\
windows.security.credentials.idl
\
windows.security.cryptography.idl
\
windows.storage.streams.idl
\
...
...
This diff is collapsed.
Click to expand it.
include/windows.perception.spatial.surfaces.idl
0 → 100644
+
232
−
0
View file @
79a7c7ca
/*
*
Copyright
(
C
)
2023
Mohamad
Al
-
Jaf
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
ifdef
__WIDL__
#
pragma
winrt
ns_prefix
#
endif
import
"inspectable.idl"
;
import
"asyncinfo.idl"
;
import
"eventtoken.idl"
;
import
"windowscontracts.idl"
;
import
"windows.foundation.idl"
;
import
"windows.foundation.numerics.idl"
;
import
"windows.graphics.directx.idl"
;
import
"windows.perception.spatial.idl"
;
import
"windows.storage.streams.idl"
;
namespace
Windows
.
Perception.Spatial.Surfaces
{
interface
ISpatialSurfaceInfo
;
interface
ISpatialSurfaceMesh
;
interface
ISpatialSurfaceMeshBuffer
;
interface
ISpatialSurfaceMeshOptions
;
interface
ISpatialSurfaceMeshOptionsStatics
;
interface
ISpatialSurfaceObserver
;
interface
ISpatialSurfaceObserverStatics
;
interface
ISpatialSurfaceObserverStatics2
;
runtimeclass
SpatialSurfaceInfo
;
runtimeclass
SpatialSurfaceMesh
;
runtimeclass
SpatialSurfaceMeshBuffer
;
runtimeclass
SpatialSurfaceMeshOptions
;
runtimeclass
SpatialSurfaceObserver
;
declare
{
interface
Windows
.
Foundation.Collections.IMapView<GUID
,
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo
*
>
;
interface
Windows
.
Foundation.Collections.IKeyValuePair<GUID
,
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo
*
>
;
interface
Windows
.
Foundation.Collections.IIterable<Windows.Foundation.Collections.IKeyValuePair<GUID
,
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo
*
>
*
>
;
interface
Windows
.
Foundation.Collections.IIterator<Windows.Foundation.Collections.IKeyValuePair<GUID
,
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo
*
>
*
>
;
interface
Windows
.
Foundation.AsyncOperationCompletedHandler<Windows.Perception.Spatial.Surfaces.SpatialSurfaceMesh
*
>
;
interface
Windows
.
Foundation.IAsyncOperation<Windows.Perception.Spatial.Surfaces.SpatialSurfaceMesh
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<Windows.Perception.Spatial.Surfaces.SpatialSurfaceObserver
*
,
IInspectable
*
>
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo)
,
uuid
(
f8e9ebe7
-
39b7
-
3962
-
bb03
-
57
f56e1fb0a1
)
]
interface
ISpatialSurfaceInfo
:
IInspectable
{
[
propget
]
HRESULT
Id
(
[
out
,
retval
]
GUID
*
value
)
;
[
propget
]
HRESULT
UpdateTime
(
[
out
,
retval
]
Windows
.
Foundation.DateTime
*
value
)
;
HRESULT
TryGetBounds
(
[
in
]
Windows
.
Perception.Spatial.SpatialCoordinateSystem
*
system
,
[
out
,
retval
]
Windows
.
Foundation.IReference<Windows.Perception.Spatial.SpatialBoundingOrientedBox>
**
value
)
;
[
overload
(
"TryComputeLatestMeshAsync"
)
]
HRESULT
TryComputeLatestMeshAsync
(
[
in
]
DOUBLE
triangles
,
[
out
,
retval
]
Windows
.
Foundation.IAsyncOperation<Windows.Perception.Spatial.Surfaces.SpatialSurfaceMesh
*
>
**
value
)
;
[
overload
(
"TryComputeLatestMeshAsync"
)
]
HRESULT
TryComputeLatestMeshWithOptionsAsync
(
[
in
]
DOUBLE
triangles
,
[
in
]
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshOptions
*
options
,
[
out
,
retval
]
Windows
.
Foundation.IAsyncOperation<Windows.Perception.Spatial.Surfaces.SpatialSurfaceMesh
*
>
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMesh)
,
uuid
(
108
f57d9
-
df0d
-
3950
-
a0fd
-
f972c77c27b4
)
]
interface
ISpatialSurfaceMesh
:
IInspectable
{
[
propget
]
HRESULT
SurfaceInfo
(
[
out
,
retval
]
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo
**
value
)
;
[
propget
]
HRESULT
CoordinateSystem
(
[
out
,
retval
]
Windows
.
Perception.Spatial.SpatialCoordinateSystem
**
value
)
;
[
propget
]
HRESULT
TriangleIndices
(
[
out
,
retval
]
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshBuffer
**
value
)
;
[
propget
]
HRESULT
VertexPositions
(
[
out
,
retval
]
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshBuffer
**
value
)
;
[
propget
]
HRESULT
VertexPositionScale
(
[
out
,
retval
]
Windows
.
Foundation.Numerics.Vector3
*
value
)
;
[
propget
]
HRESULT
VertexNormals
(
[
out
,
retval
]
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshBuffer
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshBuffer)
,
uuid
(
93
cf59e0
-
871
f
-
33
f8
-
98b2
-
03
d101458f6f
)
]
interface
ISpatialSurfaceMeshBuffer
:
IInspectable
{
[
propget
]
HRESULT
Format
(
[
out
,
retval
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
*
value
)
;
[
propget
]
HRESULT
Stride
(
[
out
,
retval
]
UINT32
*
value
)
;
[
propget
]
HRESULT
ElementCount
(
[
out
,
retval
]
UINT32
*
value
)
;
[
propget
]
HRESULT
Data
(
[
out
,
retval
]
Windows
.
Storage.Streams.IBuffer
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshOptions)
,
uuid
(
d2759f89
-
3572
-
3
d2d
-
a10d
-
5
fee9394aa37
)
]
interface
ISpatialSurfaceMeshOptions
:
IInspectable
{
[
propget
]
HRESULT
VertexPositionFormat
(
[
out
,
retval
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
*
value
)
;
[
propput
]
HRESULT
VertexPositionFormat
(
[
in
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
value
)
;
[
propget
]
HRESULT
TriangleIndexFormat
(
[
out
,
retval
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
*
value
)
;
[
propput
]
HRESULT
TriangleIndexFormat
(
[
in
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
value
)
;
[
propget
]
HRESULT
VertexNormalFormat
(
[
out
,
retval
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
*
value
)
;
[
propput
]
HRESULT
VertexNormalFormat
(
[
in
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
value
)
;
[
propget
]
HRESULT
IncludeVertexNormals
(
[
out
,
retval
]
boolean
*
value
)
;
[
propput
]
HRESULT
IncludeVertexNormals
(
[
in
]
boolean
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceMeshOptions)
,
uuid
(
9b340
abf
-
9781
-
4505
-
8935
-
013575
caae5e
)
]
interface
ISpatialSurfaceMeshOptionsStatics
:
IInspectable
{
[
propget
]
HRESULT
SupportedVertexPositionFormats
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IVectorView<Windows.Graphics.DirectX.DirectXPixelFormat>
**
value
)
;
[
propget
]
HRESULT
SupportedTriangleIndexFormats
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IVectorView<Windows.Graphics.DirectX.DirectXPixelFormat>
**
value
)
;
[
propget
]
HRESULT
SupportedVertexNormalFormats
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IVectorView<Windows.Graphics.DirectX.DirectXPixelFormat>
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceObserver)
,
uuid
(
10b69819
-
ddca
-
3483
-
ac3a
-
748
fe8c86df5
)
]
interface
ISpatialSurfaceObserver
:
IInspectable
{
HRESULT
GetObservedSurfaces
(
[
out
,
retval
]
Windows
.
Foundation.Collections.IMapView<GUID
,
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceInfo
*
>
**
value
)
;
HRESULT
SetBoundingVolume
(
[
in
]
Windows
.
Perception.Spatial.SpatialBoundingVolume
*
bounds
)
;
HRESULT
SetBoundingVolumes
(
[
in
]
Windows
.
Foundation.Collections.IIterable<Windows.Perception.Spatial.SpatialBoundingVolume
*
>
*
bounds
)
;
[
eventadd
]
HRESULT
ObservedSurfacesChanged
(
[
in
]
Windows
.
Foundation.TypedEventHandler<Windows.Perception.Spatial.Surfaces.SpatialSurfaceObserver
*
,
IInspectable
*
>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
ObservedSurfacesChanged
(
[
in
]
EventRegistrationToken
token
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceObserver)
,
uuid
(
165951
ed
-
2108
-
4168
-
9175
-
87
e027bc9285
)
]
interface
ISpatialSurfaceObserverStatics
:
IInspectable
{
HRESULT
RequestAccessAsync
(
[
out
,
retval
]
Windows
.
Foundation.IAsyncOperation<Windows.Perception.Spatial.SpatialPerceptionAccessStatus>
**
result
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
4.0
),
exclusiveto
(
Windows
.
Perception.Spatial.Surfaces.SpatialSurfaceObserver)
,
uuid
(
0
f534261
-
c55d
-
4
e6b
-
a895
-
a19de69a42e3
)
]
interface
ISpatialSurfaceObserverStatics2
:
IInspectable
requires
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceObserverStatics
{
HRESULT
IsSupported
(
[
out
,
retval
]
boolean
*
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
threading
(
both
)
]
runtimeclass
SpatialSurfaceInfo
{
[
default
]
interface
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceInfo;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
threading
(
both
)
]
runtimeclass
SpatialSurfaceMesh
{
[
default
]
interface
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceMesh;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
threading
(
both
)
]
runtimeclass
SpatialSurfaceMeshBuffer
{
[
default
]
interface
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceMeshBuffer;
}
[
activatable
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
static
(
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceMeshOptionsStatics
,
Windows
.
Foundation.UniversalApiContract
,
2.0
),
threading
(
both
)
]
runtimeclass
SpatialSurfaceMeshOptions
{
[
default
]
interface
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceMeshOptions;
}
[
activatable
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
static
(
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceObserverStatics
,
Windows
.
Foundation.UniversalApiContract
,
2.0
),
static
(
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceObserverStatics2
,
Windows
.
Foundation.UniversalApiContract
,
4.0
),
threading
(
both
)
]
runtimeclass
SpatialSurfaceObserver
{
[
default
]
interface
Windows
.
Perception.Spatial.Surfaces.ISpatialSurfaceObserver;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment