Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
048b0421
Commit
048b0421
authored
Apr 05, 2023
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Apr 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Windows.UI.Composition.CompositionGraphicsDevice definition.
Needed for mingw Firefox build.
parent
191dbcc8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
windows.ui.composition.idl
include/windows.ui.composition.idl
+59
-0
No files found.
include/windows.ui.composition.idl
View file @
048b0421
...
@@ -68,6 +68,10 @@ namespace Windows.UI.Composition {
...
@@ -68,6 +68,10 @@ namespace Windows.UI.Composition {
interface
ICompositionEasingFunctionStatics
;
interface
ICompositionEasingFunctionStatics
;
interface
ICompositionEffectBrush
;
interface
ICompositionEffectBrush
;
interface
ICompositionEffectFactory
;
interface
ICompositionEffectFactory
;
interface
ICompositionGraphicsDevice
;
interface
ICompositionGraphicsDevice2
;
interface
ICompositionGraphicsDevice3
;
interface
ICompositionGraphicsDevice4
;
interface
ICompositionObject
;
interface
ICompositionObject
;
interface
ICompositionObject2
;
interface
ICompositionObject2
;
interface
ICompositionObject3
;
interface
ICompositionObject3
;
...
@@ -102,6 +106,7 @@ namespace Windows.UI.Composition {
...
@@ -102,6 +106,7 @@ namespace Windows.UI.Composition {
interface
IInsetClip
;
interface
IInsetClip
;
interface
ILinearEasingFunction
;
interface
ILinearEasingFunction
;
interface
IQuaternionKeyFrameAnimation
;
interface
IQuaternionKeyFrameAnimation
;
interface
IRenderingDeviceReplacedEventArgs
;
interface
IScalarKeyFrameAnimation
;
interface
IScalarKeyFrameAnimation
;
interface
ISpriteVisual
;
interface
ISpriteVisual
;
interface
ISpriteVisual2
;
interface
ISpriteVisual2
;
...
@@ -126,6 +131,7 @@ namespace Windows.UI.Composition {
...
@@ -126,6 +131,7 @@ namespace Windows.UI.Composition {
runtimeclass
CompositionEasingFunction
;
runtimeclass
CompositionEasingFunction
;
runtimeclass
CompositionEffectBrush
;
runtimeclass
CompositionEffectBrush
;
runtimeclass
CompositionEffectFactory
;
runtimeclass
CompositionEffectFactory
;
runtimeclass
CompositionGraphicsDevice
;
runtimeclass
CompositionObject
;
runtimeclass
CompositionObject
;
runtimeclass
CompositionPropertySet
;
runtimeclass
CompositionPropertySet
;
runtimeclass
CompositionScopedBatch
;
runtimeclass
CompositionScopedBatch
;
...
@@ -139,6 +145,7 @@ namespace Windows.UI.Composition {
...
@@ -139,6 +145,7 @@ namespace Windows.UI.Composition {
runtimeclass
LinearEasingFunction
;
runtimeclass
LinearEasingFunction
;
runtimeclass
KeyFrameAnimation
;
runtimeclass
KeyFrameAnimation
;
runtimeclass
QuaternionKeyFrameAnimation
;
runtimeclass
QuaternionKeyFrameAnimation
;
runtimeclass
RenderingDeviceReplacedEventArgs
;
runtimeclass
ScalarKeyFrameAnimation
;
runtimeclass
ScalarKeyFrameAnimation
;
runtimeclass
SpriteVisual
;
runtimeclass
SpriteVisual
;
runtimeclass
Vector2KeyFrameAnimation
;
runtimeclass
Vector2KeyFrameAnimation
;
...
@@ -155,6 +162,7 @@ namespace Windows.UI.Composition {
...
@@ -155,6 +162,7 @@ namespace Windows.UI.Composition {
interface
Windows
.
Foundation.Collections.IIterator<Windows.UI.Composition.CompositionAnimation
*
>
;
interface
Windows
.
Foundation.Collections.IIterator<Windows.UI.Composition.CompositionAnimation
*
>
;
interface
Windows
.
Foundation.Collections.IIterator<Windows.UI.Composition.Visual
*
>
;
interface
Windows
.
Foundation.Collections.IIterator<Windows.UI.Composition.Visual
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<IInspectable
*
,
Windows
.
UI.Composition.CompositionBatchCompletedEventArgs
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<IInspectable
*
,
Windows
.
UI.Composition.CompositionBatchCompletedEventArgs
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<Windows.UI.Composition.CompositionGraphicsDevice
*
,
Windows
.
UI.Composition.RenderingDeviceReplacedEventArgs
*
>
;
}
}
[
[
...
@@ -487,6 +495,24 @@ namespace Windows.UI.Composition {
...
@@ -487,6 +495,24 @@ namespace Windows.UI.Composition {
[
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
UI.Composition.CompositionGraphicsDevice)
,
uuid
(
fb22c6e1
-
80
a2
-
4667
-
9936
-
dbeaf6eefe95
)
]
interface
ICompositionGraphicsDevice
:
IInspectable
{
HRESULT
CreateDrawingSurface
(
[
in
]
Windows
.
Foundation.Size
pixels
,
[
in
]
Windows
.
Graphics.DirectX.DirectXPixelFormat
format
,
[
in
]
Windows
.
Graphics.DirectX.DirectXAlphaMode
mode
,
[
out
,
retval
]
Windows
.
UI.Composition.CompositionDrawingSurface
**
result
)
;
[
eventadd
]
HRESULT
RenderingDeviceReplaced
(
[
in
]
Windows
.
Foundation.TypedEventHandler<Windows.UI.Composition.CompositionGraphicsDevice
*
,
Windows
.
UI.Composition.RenderingDeviceReplacedEventArgs
*
>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
RenderingDeviceReplaced
(
[
in
]
EventRegistrationToken
token
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
UI.Composition.CompositionPropertySet)
,
exclusiveto
(
Windows
.
UI.Composition.CompositionPropertySet)
,
uuid
(
c9d6d202
-
5
f67
-
4453
-
9117
-
9
eadd430d3c2
)
uuid
(
c9d6d202
-
5
f67
-
4453
-
9117
-
9
eadd430d3c2
)
]
]
...
@@ -731,6 +757,16 @@ namespace Windows.UI.Composition {
...
@@ -731,6 +757,16 @@ namespace Windows.UI.Composition {
[
[
contract
(
Windows
.
Foundation
.
UniversalApiContract
,
2.0
),
contract
(
Windows
.
Foundation
.
UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
UI.Composition.RenderingDeviceReplacedEventArgs)
,
uuid
(
3
a31ac7d
-
28b
f
-
4
e7a
-
8524
-
71679
d480f38
)
]
interface
IRenderingDeviceReplacedEventArgs
:
IInspectable
{
[
propget
]
HRESULT
GraphicsDevice
(
[
out
,
retval
]
Windows
.
UI.Composition.CompositionGraphicsDevice
**
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
exclusiveto
(
Windows
.
UI.Composition.ScalarKeyFrameAnimation)
,
exclusiveto
(
Windows
.
UI.Composition.ScalarKeyFrameAnimation)
,
uuid
(
ae288fa9
-
252
c
-
4b95
-
a725
-
bf85e38000a1
)
uuid
(
ae288fa9
-
252
c
-
4b95
-
a725
-
bf85e38000a1
)
]
]
...
@@ -987,6 +1023,19 @@ namespace Windows.UI.Composition {
...
@@ -987,6 +1023,19 @@ namespace Windows.UI.Composition {
}
}
[
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
threading
(
both
)
]
runtimeclass
CompositionGraphicsDevice
:
Windows
.
UI.Composition.CompositionObject
{
[
default
]
interface
Windows
.
UI.Composition.ICompositionGraphicsDevice;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
4.0
)
]
interface
Windows
.
UI.Composition.ICompositionGraphicsDevice2;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
8.0
)
]
interface
Windows
.
UI.Composition.ICompositionGraphicsDevice3;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
12.0
)
]
interface
Windows
.
UI.Composition.ICompositionGraphicsDevice4;
}
[
composable
(
Windows
.
UI.Composition.ICompositionObjectFactory
,
public
,
Windows
.
Foundation.UniversalApiContract
,
2.0
),
composable
(
Windows
.
UI.Composition.ICompositionObjectFactory
,
public
,
Windows
.
Foundation.UniversalApiContract
,
2.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
marshaling_behavior
(
agile
),
...
@@ -1136,6 +1185,16 @@ namespace Windows.UI.Composition {
...
@@ -1136,6 +1185,16 @@ namespace Windows.UI.Composition {
marshaling_behavior
(
agile
),
marshaling_behavior
(
agile
),
threading
(
both
)
threading
(
both
)
]
]
runtimeclass
RenderingDeviceReplacedEventArgs
:
Windows
.
UI.Composition.CompositionObject
{
[
default
]
interface
Windows
.
UI.Composition.IRenderingDeviceReplacedEventArgs;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
2.0
),
marshaling_behavior
(
agile
),
threading
(
both
)
]
runtimeclass
ScalarKeyFrameAnimation
:
Windows
.
UI.Composition.KeyFrameAnimation
runtimeclass
ScalarKeyFrameAnimation
:
Windows
.
UI.Composition.KeyFrameAnimation
{
{
[
default
]
interface
Windows
.
UI.Composition.IScalarKeyFrameAnimation;
[
default
]
interface
Windows
.
UI.Composition.IScalarKeyFrameAnimation;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment