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
740c44f5
Commit
740c44f5
authored
Jan 28, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPD3DRMMATERIALOVERRIDE.
parent
33f0e190
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
frame.c
dlls/d3drm/frame.c
+4
-4
d3drmobj.h
include/d3drmobj.h
+2
-2
No files found.
dlls/d3drm/frame.c
View file @
740c44f5
...
@@ -2531,8 +2531,8 @@ static HRESULT WINAPI IDirect3DRMFrame3Impl_GetSceneFogMethod(IDirect3DRMFrame3*
...
@@ -2531,8 +2531,8 @@ static HRESULT WINAPI IDirect3DRMFrame3Impl_GetSceneFogMethod(IDirect3DRMFrame3*
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
IDirect3DRMFrame3Impl_SetMaterialOverride
(
IDirect3DRMFrame3
*
iface
,
static
HRESULT
WINAPI
IDirect3DRMFrame3Impl_SetMaterialOverride
(
IDirect3DRMFrame3
*
iface
,
LPD3DRMMATERIALOVERRIDE
override
)
D3DRMMATERIALOVERRIDE
*
override
)
{
{
IDirect3DRMFrameImpl
*
This
=
impl_from_IDirect3DRMFrame3
(
iface
);
IDirect3DRMFrameImpl
*
This
=
impl_from_IDirect3DRMFrame3
(
iface
);
...
@@ -2541,8 +2541,8 @@ static HRESULT WINAPI IDirect3DRMFrame3Impl_SetMaterialOverride(IDirect3DRMFrame
...
@@ -2541,8 +2541,8 @@ static HRESULT WINAPI IDirect3DRMFrame3Impl_SetMaterialOverride(IDirect3DRMFrame
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
IDirect3DRMFrame3Impl_GetMaterialOverride
(
IDirect3DRMFrame3
*
iface
,
static
HRESULT
WINAPI
IDirect3DRMFrame3Impl_GetMaterialOverride
(
IDirect3DRMFrame3
*
iface
,
LPD3DRMMATERIALOVERRIDE
override
)
D3DRMMATERIALOVERRIDE
*
override
)
{
{
IDirect3DRMFrameImpl
*
This
=
impl_from_IDirect3DRMFrame3
(
iface
);
IDirect3DRMFrameImpl
*
This
=
impl_from_IDirect3DRMFrame3
(
iface
);
...
...
include/d3drmobj.h
View file @
740c44f5
...
@@ -1691,8 +1691,8 @@ DECLARE_INTERFACE_(IDirect3DRMFrame3,IDirect3DRMVisual)
...
@@ -1691,8 +1691,8 @@ DECLARE_INTERFACE_(IDirect3DRMFrame3,IDirect3DRMVisual)
STDMETHOD
(
GetTraversalOptions
)(
THIS_
LPDWORD
pFlags
)
PURE
;
STDMETHOD
(
GetTraversalOptions
)(
THIS_
LPDWORD
pFlags
)
PURE
;
STDMETHOD
(
SetSceneFogMethod
)(
THIS_
DWORD
flags
)
PURE
;
STDMETHOD
(
SetSceneFogMethod
)(
THIS_
DWORD
flags
)
PURE
;
STDMETHOD
(
GetSceneFogMethod
)(
THIS_
LPDWORD
pFlags
)
PURE
;
STDMETHOD
(
GetSceneFogMethod
)(
THIS_
LPDWORD
pFlags
)
PURE
;
STDMETHOD
(
SetMaterialOverride
)(
THIS_
LPD3DRMMATERIALOVERRIDE
)
PURE
;
STDMETHOD
(
SetMaterialOverride
)(
THIS_
D3DRMMATERIALOVERRIDE
*
override
)
PURE
;
STDMETHOD
(
GetMaterialOverride
)(
THIS_
LPD3DRMMATERIALOVERRIDE
)
PURE
;
STDMETHOD
(
GetMaterialOverride
)(
THIS_
D3DRMMATERIALOVERRIDE
*
override
)
PURE
;
};
};
#undef INTERFACE
#undef INTERFACE
...
...
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