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
9dcdbfab
Commit
9dcdbfab
authored
May 09, 2013
by
André Hentschel
Committed by
Alexandre Julliard
May 09, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Add IDirect3DRMFace2 interface.
parent
9bce3a92
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
d3drm.c
dlls/d3drm/d3drm.c
+4
-4
d3drm_private.h
dlls/d3drm/d3drm_private.h
+1
-1
face.c
dlls/d3drm/face.c
+0
-0
meshbuilder.c
dlls/d3drm/meshbuilder.c
+3
-3
No files found.
dlls/d3drm/d3drm.c
View file @
9dcdbfab
...
...
@@ -165,7 +165,7 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateFace(IDirect3DRM* iface, IDirect3DRM
{
TRACE
(
"iface %p, face %p.
\n
"
,
iface
,
face
);
return
Direct3DRMFace_create
((
IUnknown
**
)
face
);
return
Direct3DRMFace_create
(
&
IID_IDirect3DRMFace
,
(
IUnknown
**
)
face
);
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateAnimation
(
IDirect3DRM
*
iface
,
LPDIRECT3DRMANIMATION
*
ppAnimation
)
...
...
@@ -544,7 +544,7 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateFace(IDirect3DRM2 *iface, IDirect3D
{
TRACE
(
"iface %p, face %p.
\n
"
,
iface
,
face
);
return
Direct3DRMFace_create
((
IUnknown
**
)
face
);
return
Direct3DRMFace_create
(
&
IID_IDirect3DRMFace
,
(
IUnknown
**
)
face
);
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateAnimation
(
IDirect3DRM2
*
iface
,
...
...
@@ -936,9 +936,9 @@ static HRESULT WINAPI IDirect3DRM3Impl_CreateMeshBuilder(IDirect3DRM3 *iface, ID
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateFace
(
IDirect3DRM3
*
iface
,
IDirect3DRMFace2
**
face
)
{
FIXME
(
"iface %p, face %p stub!
\n
"
,
iface
,
face
);
TRACE
(
"iface %p, face %p.
\n
"
,
iface
,
face
);
return
E_NOTIMPL
;
return
Direct3DRMFace_create
(
&
IID_IDirect3DRMFace2
,
(
IUnknown
**
)
face
)
;
}
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateAnimation
(
IDirect3DRM3
*
iface
,
...
...
dlls/d3drm/d3drm_private.h
View file @
9dcdbfab
...
...
@@ -25,7 +25,7 @@
#include "dxfile.h"
HRESULT
Direct3DRMDevice_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMFace_create
(
IUnknown
**
ret_iface
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMFace_create
(
REFIID
riid
,
IUnknown
**
ret_iface
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMFrame_create
(
REFIID
riid
,
IUnknown
*
parent_frame
,
IUnknown
**
ret_iface
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMLight_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMesh_create
(
IDirect3DRMMesh
**
obj
)
DECLSPEC_HIDDEN
;
...
...
dlls/d3drm/face.c
View file @
9dcdbfab
This diff is collapsed.
Click to expand it.
dlls/d3drm/meshbuilder.c
View file @
9dcdbfab
...
...
@@ -850,7 +850,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder2Impl_CreateFace(IDirect3DRMMeshBuil
{
TRACE
(
"iface %p, face %p.
\n
"
,
iface
,
face
);
return
Direct3DRMFace_create
((
IUnknown
**
)
face
);
return
Direct3DRMFace_create
(
&
IID_IDirect3DRMFace
,
(
IUnknown
**
)
face
);
}
static
D3DRMRENDERQUALITY
WINAPI
IDirect3DRMMeshBuilder2Impl_GetQuality
(
IDirect3DRMMeshBuilder2
*
iface
)
...
...
@@ -2002,9 +2002,9 @@ static int WINAPI IDirect3DRMMeshBuilder3Impl_AddNormal(IDirect3DRMMeshBuilder3*
static
HRESULT
WINAPI
IDirect3DRMMeshBuilder3Impl_CreateFace
(
IDirect3DRMMeshBuilder3
*
iface
,
IDirect3DRMFace2
**
face
)
{
FIXME
(
"iface %p, face %p stub!
\n
"
,
iface
,
face
);
TRACE
(
"iface %p, face %p.
\n
"
,
iface
,
face
);
return
E_NOTIMPL
;
return
Direct3DRMFace_create
(
&
IID_IDirect3DRMFace2
,
(
IUnknown
**
)
face
)
;
}
static
D3DRMRENDERQUALITY
WINAPI
IDirect3DRMMeshBuilder3Impl_GetQuality
(
IDirect3DRMMeshBuilder3
*
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