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
9a8b788d
Commit
9a8b788d
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]Field.
parent
48b0666d
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 @
9a8b788d
...
...
@@ -38,6 +38,7 @@ typedef struct {
LONG
ref
;
D3DVALUE
back
;
D3DVALUE
front
;
D3DVALUE
field
;
}
IDirect3DRMViewportImpl
;
static
inline
IDirect3DRMViewportImpl
*
impl_from_IDirect3DRMViewport
(
IDirect3DRMViewport
*
iface
)
...
...
@@ -239,9 +240,9 @@ static HRESULT WINAPI IDirect3DRMViewportImpl_SetField(IDirect3DRMViewport* ifac
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport
(
iface
);
FIXME
(
"(%p/%p)->(%f): stub
\n
"
,
iface
,
This
,
field
);
TRACE
(
"(%p/%p)->(%f)
\n
"
,
iface
,
This
,
field
);
return
E_NOTIMPL
;
return
IDirect3DRMViewport2_SetField
(
&
This
->
IDirect3DRMViewport2_iface
,
field
)
;
}
static
HRESULT
WINAPI
IDirect3DRMViewportImpl_SetUniformScaling
(
IDirect3DRMViewport
*
iface
,
BOOL
b
)
...
...
@@ -414,9 +415,9 @@ static D3DVALUE WINAPI IDirect3DRMViewportImpl_GetField(IDirect3DRMViewport* ifa
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport
(
iface
);
FIXME
(
"(%p/%p)->(): stub
\n
"
,
iface
,
This
);
TRACE
(
"(%p/%p)->()
\n
"
,
iface
,
This
);
return
E_NOTIMPL
;
return
IDirect3DRMViewport2_GetField
(
&
This
->
IDirect3DRMViewport2_iface
)
;
}
static
D3DVALUE
WINAPI
IDirect3DRMViewportImpl_GetBack
(
IDirect3DRMViewport
*
iface
)
...
...
@@ -664,9 +665,11 @@ static HRESULT WINAPI IDirect3DRMViewport2Impl_SetField(IDirect3DRMViewport2* if
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport2
(
iface
);
FIXME
(
"(%p/%p)->(%f): stub
\n
"
,
iface
,
This
,
field
);
TRACE
(
"(%p/%p)->(%f)
\n
"
,
iface
,
This
,
field
);
return
E_NOTIMPL
;
This
->
field
=
field
;
return
D3DRM_OK
;
}
static
HRESULT
WINAPI
IDirect3DRMViewport2Impl_SetUniformScaling
(
IDirect3DRMViewport2
*
iface
,
BOOL
b
)
...
...
@@ -839,9 +842,9 @@ static D3DVALUE WINAPI IDirect3DRMViewport2Impl_GetField(IDirect3DRMViewport2* i
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport2
(
iface
);
FIXME
(
"(%p/%p)->(): stub
\n
"
,
iface
,
This
);
TRACE
(
"(%p/%p)->()
\n
"
,
iface
,
This
);
return
E_NOTIMPL
;
return
This
->
field
;
}
static
D3DVALUE
WINAPI
IDirect3DRMViewport2Impl_GetBack
(
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