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
ece2ca78
Commit
ece2ca78
authored
Jun 07, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jun 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMViewportX_[Get|Set]Back.
parent
6e9cbf1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
viewport.c
dlls/d3drm/viewport.c
+11
-8
No files found.
dlls/d3drm/viewport.c
View file @
ece2ca78
...
...
@@ -36,6 +36,7 @@ typedef struct {
IDirect3DRMViewport
IDirect3DRMViewport_iface
;
IDirect3DRMViewport2
IDirect3DRMViewport2_iface
;
LONG
ref
;
D3DVALUE
back
;
}
IDirect3DRMViewportImpl
;
static
inline
IDirect3DRMViewportImpl
*
impl_from_IDirect3DRMViewport
(
IDirect3DRMViewport
*
iface
)
...
...
@@ -228,9 +229,9 @@ static HRESULT WINAPI IDirect3DRMViewportImpl_SetBack(IDirect3DRMViewport* iface
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport
(
iface
);
FIXME
(
"(%p/%p)->(%f): stub
\n
"
,
iface
,
This
,
back
);
TRACE
(
"(%p/%p)->(%f)
\n
"
,
iface
,
This
,
back
);
return
E_NOTIMPL
;
return
IDirect3DRMViewport2_SetBack
(
&
This
->
IDirect3DRMViewport2_iface
,
back
)
;
}
static
HRESULT
WINAPI
IDirect3DRMViewportImpl_SetField
(
IDirect3DRMViewport
*
iface
,
D3DVALUE
field
)
...
...
@@ -421,9 +422,9 @@ static D3DVALUE WINAPI IDirect3DRMViewportImpl_GetBack(IDirect3DRMViewport* ifac
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport
(
iface
);
FIXME
(
"(%p/%p)->(): stub
\n
"
,
iface
,
This
);
TRACE
(
"(%p/%p)->()
\n
"
,
iface
,
This
);
return
E_NOTIMPL
;
return
IDirect3DRMViewport2_GetBack
(
&
This
->
IDirect3DRMViewport2_iface
)
;
}
static
D3DVALUE
WINAPI
IDirect3DRMViewportImpl_GetFront
(
IDirect3DRMViewport
*
iface
)
...
...
@@ -649,9 +650,11 @@ static HRESULT WINAPI IDirect3DRMViewport2Impl_SetBack(IDirect3DRMViewport2* ifa
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport2
(
iface
);
FIXME
(
"(%p/%p)->(%f): stub
\n
"
,
iface
,
This
,
back
);
TRACE
(
"(%p/%p)->(%f)
\n
"
,
iface
,
This
,
back
);
return
E_NOTIMPL
;
This
->
back
=
back
;
return
D3DRM_OK
;
}
static
HRESULT
WINAPI
IDirect3DRMViewport2Impl_SetField
(
IDirect3DRMViewport2
*
iface
,
D3DVALUE
field
)
...
...
@@ -842,9 +845,9 @@ static D3DVALUE WINAPI IDirect3DRMViewport2Impl_GetBack(IDirect3DRMViewport2* if
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport2
(
iface
);
FIXME
(
"(%p/%p)->(): stub
\n
"
,
iface
,
This
);
TRACE
(
"(%p/%p)->()
\n
"
,
iface
,
This
);
return
E_NOTIMPL
;
return
This
->
back
;
}
static
D3DVALUE
WINAPI
IDirect3DRMViewport2Impl_GetFront
(
IDirect3DRMViewport2
*
iface
)
...
...
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