Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
31f9cae2
Commit
31f9cae2
authored
Jun 05, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPDIRECT3DRMVIEWPORTARRAY.
parent
b2373931
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
13 deletions
+7
-13
device.c
dlls/d3drm/device.c
+4
-10
d3drmobj.h
include/d3drmobj.h
+3
-3
No files found.
dlls/d3drm/device.c
View file @
31f9cae2
...
...
@@ -319,12 +319,9 @@ static HRESULT WINAPI IDirect3DRMDevice2Impl_SetTextureQuality(IDirect3DRMDevice
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRMDevice2Impl_GetViewports
(
IDirect3DRMDevice2
*
iface
,
LPDIRECT3DRMVIEWPORTARRAY
*
return_views
)
static
HRESULT
WINAPI
IDirect3DRMDevice2Impl_GetViewports
(
IDirect3DRMDevice2
*
iface
,
IDirect3DRMViewportArray
**
array
)
{
IDirect3DRMDeviceImpl
*
This
=
impl_from_IDirect3DRMDevice2
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
return_views
);
FIXME
(
"iface %p, array %p stub!
\n
"
,
iface
,
array
);
return
E_NOTIMPL
;
}
...
...
@@ -751,12 +748,9 @@ static HRESULT WINAPI IDirect3DRMDevice3Impl_SetTextureQuality(IDirect3DRMDevice
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRMDevice3Impl_GetViewports
(
IDirect3DRMDevice3
*
iface
,
LPDIRECT3DRMVIEWPORTARRAY
*
return_views
)
static
HRESULT
WINAPI
IDirect3DRMDevice3Impl_GetViewports
(
IDirect3DRMDevice3
*
iface
,
IDirect3DRMViewportArray
**
array
)
{
IDirect3DRMDeviceImpl
*
This
=
impl_from_IDirect3DRMDevice3
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
return_views
);
FIXME
(
"iface %p, array %p stub!
\n
"
,
iface
,
array
);
return
E_NOTIMPL
;
}
...
...
include/d3drmobj.h
View file @
31f9cae2
...
...
@@ -388,7 +388,7 @@ DECLARE_INTERFACE_(IDirect3DRMDevice,IUnknown)
STDMETHOD
(
SetShades
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetQuality
)(
THIS_
D3DRMRENDERQUALITY
)
PURE
;
STDMETHOD
(
SetTextureQuality
)(
THIS_
D3DRMTEXTUREQUALITY
)
PURE
;
STDMETHOD
(
GetViewports
)(
THIS_
LPDIRECT3DRMVIEWPORTARRAY
*
return_views
)
PURE
;
STDMETHOD
(
GetViewports
)(
THIS_
struct
IDirect3DRMViewportArray
**
array
)
PURE
;
STDMETHOD_
(
BOOL
,
GetDither
)(
THIS
)
PURE
;
STDMETHOD_
(
DWORD
,
GetShades
)(
THIS
)
PURE
;
STDMETHOD_
(
DWORD
,
GetHeight
)(
THIS
)
PURE
;
...
...
@@ -515,7 +515,7 @@ DECLARE_INTERFACE_(IDirect3DRMDevice2,IDirect3DRMDevice)
STDMETHOD
(
SetShades
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetQuality
)(
THIS_
D3DRMRENDERQUALITY
)
PURE
;
STDMETHOD
(
SetTextureQuality
)(
THIS_
D3DRMTEXTUREQUALITY
)
PURE
;
STDMETHOD
(
GetViewports
)(
THIS_
LPDIRECT3DRMVIEWPORTARRAY
*
return_views
)
PURE
;
STDMETHOD
(
GetViewports
)(
THIS_
struct
IDirect3DRMViewportArray
**
array
)
PURE
;
STDMETHOD_
(
BOOL
,
GetDither
)(
THIS
)
PURE
;
STDMETHOD_
(
DWORD
,
GetShades
)(
THIS
)
PURE
;
STDMETHOD_
(
DWORD
,
GetHeight
)(
THIS
)
PURE
;
...
...
@@ -660,7 +660,7 @@ DECLARE_INTERFACE_(IDirect3DRMDevice3,IDirect3DRMObject)
STDMETHOD
(
SetShades
)(
THIS_
DWORD
)
PURE
;
STDMETHOD
(
SetQuality
)(
THIS_
D3DRMRENDERQUALITY
)
PURE
;
STDMETHOD
(
SetTextureQuality
)(
THIS_
D3DRMTEXTUREQUALITY
)
PURE
;
STDMETHOD
(
GetViewports
)(
THIS_
LPDIRECT3DRMVIEWPORTARRAY
*
return_views
)
PURE
;
STDMETHOD
(
GetViewports
)(
THIS_
struct
IDirect3DRMViewportArray
**
array
)
PURE
;
STDMETHOD_
(
BOOL
,
GetDither
)(
THIS
)
PURE
;
STDMETHOD_
(
DWORD
,
GetShades
)(
THIS
)
PURE
;
STDMETHOD_
(
DWORD
,
GetHeight
)(
THIS
)
PURE
;
...
...
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