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
c635b2fc
Commit
c635b2fc
authored
Aug 16, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Aug 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPDIRECT3DRMPROGRESSIVEMESH.
parent
ad147d63
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
13 deletions
+7
-13
d3drm.c
dlls/d3drm/d3drm.c
+4
-10
d3drm.h
include/d3drm.h
+2
-2
d3drmobj.h
include/d3drmobj.h
+1
-1
No files found.
dlls/d3drm/d3drm.c
View file @
c635b2fc
...
...
@@ -803,12 +803,9 @@ static HRESULT WINAPI IDirect3DRM2Impl_Tick(IDirect3DRM2* iface, D3DVALUE tick)
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateProgressiveMesh
(
IDirect3DRM2
*
iface
,
LPDIRECT3DRMPROGRESSIVEMESH
*
ppMesh
)
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateProgressiveMesh
(
IDirect3DRM2
*
iface
,
IDirect3DRMProgressiveMesh
**
mesh
)
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
ppMesh
);
FIXME
(
"iface %p, mesh %p stub!
\n
"
,
iface
,
mesh
);
return
E_NOTIMPL
;
}
...
...
@@ -1478,12 +1475,9 @@ static HRESULT WINAPI IDirect3DRM3Impl_Tick(IDirect3DRM3* iface, D3DVALUE tick)
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateProgressiveMesh
(
IDirect3DRM3
*
iface
,
LPDIRECT3DRMPROGRESSIVEMESH
Mesh
)
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateProgressiveMesh
(
IDirect3DRM3
*
iface
,
IDirect3DRMProgressiveMesh
**
mesh
)
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM3
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
Mesh
);
FIXME
(
"iface %p, mesh %p stub!
\n
"
,
iface
,
mesh
);
return
E_NOTIMPL
;
}
...
...
include/d3drm.h
View file @
c635b2fc
...
...
@@ -241,7 +241,7 @@ DECLARE_INTERFACE_(IDirect3DRM2,IUnknown)
D3DRMLOADCALLBACK
load_cb
,
void
*
load_ctx
,
D3DRMLOADTEXTURECALLBACK
load_tex_cb
,
void
*
load_tex_ctx
,
IDirect3DRMFrame
*
parent_frame
)
PURE
;
STDMETHOD
(
Tick
)(
THIS_
D3DVALUE
)
PURE
;
STDMETHOD
(
CreateProgressiveMesh
)(
THIS_
LPDIRECT3DRMPROGRESSIVEMESH
*
)
PURE
;
STDMETHOD
(
CreateProgressiveMesh
)(
THIS_
IDirect3DRMProgressiveMesh
**
mesh
)
PURE
;
};
#undef INTERFACE
...
...
@@ -384,7 +384,7 @@ DECLARE_INTERFACE_(IDirect3DRM3,IUnknown)
D3DRMLOADCALLBACK
load_cb
,
void
*
load_ctx
,
D3DRMLOADTEXTURECALLBACK
load_tex_cb
,
void
*
load_tex_ctx
,
IDirect3DRMFrame3
*
parent_frame
)
PURE
;
STDMETHOD
(
Tick
)(
THIS_
D3DVALUE
)
PURE
;
STDMETHOD
(
CreateProgressiveMesh
)(
THIS_
LPDIRECT3DRMPROGRESSIVEMESH
)
PURE
;
STDMETHOD
(
CreateProgressiveMesh
)(
THIS_
IDirect3DRMProgressiveMesh
**
mesh
)
PURE
;
STDMETHOD
(
RegisterClient
)(
THIS_
REFGUID
rguid
,
LPDWORD
lpdwID
)
PURE
;
STDMETHOD
(
UnregisterClient
)(
THIS_
REFGUID
rguid
)
PURE
;
STDMETHOD
(
CreateClippedVisual
)(
THIS_
IDirect3DRMVisual
*
visual
,
IDirect3DRMClippedVisual
**
clipped_visual
)
PURE
;
...
...
include/d3drmobj.h
View file @
c635b2fc
...
...
@@ -2039,7 +2039,7 @@ DECLARE_INTERFACE_(IDirect3DRMProgressiveMesh,IDirect3DRMVisual)
STDMETHOD
(
SetDetail
)
(
THIS_
D3DVALUE
d3dVal
)
PURE
;
STDMETHOD
(
RegisterEvents
)
(
THIS_
HANDLE
event
,
DWORD
flags
,
DWORD
reserved
)
PURE
;
STDMETHOD
(
CreateMesh
)
(
THIS_
IDirect3DRMMesh
**
mesh
)
PURE
;
STDMETHOD
(
Duplicate
)
(
THIS_
LPDIRECT3DRMPROGRESSIVEMESH
*
ppD3DRMPM
esh
)
PURE
;
STDMETHOD
(
Duplicate
)
(
THIS_
IDirect3DRMProgressiveMesh
**
m
esh
)
PURE
;
STDMETHOD
(
GetBox
)
(
THIS_
D3DRMBOX
*
box
)
PURE
;
STDMETHOD
(
SetQuality
)
(
THIS_
D3DRMRENDERQUALITY
quality
)
PURE
;
STDMETHOD
(
GetQuality
)
(
THIS_
D3DRMRENDERQUALITY
*
quality
)
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