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
b068615e
Commit
b068615e
authored
May 22, 2012
by
Christian Costa
Committed by
Alexandre Julliard
May 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMMesh_SetVertices.
parent
f0d3f207
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
meshbuilder.c
dlls/d3drm/meshbuilder.c
+13
-2
No files found.
dlls/d3drm/meshbuilder.c
View file @
b068615e
...
...
@@ -2439,9 +2439,20 @@ static HRESULT WINAPI IDirect3DRMMeshImpl_SetVertices(IDirect3DRMMesh* iface,
{
IDirect3DRMMeshImpl
*
This
=
impl_from_IDirect3DRMMesh
(
iface
);
FIXME
(
"(%p)->(%u,%u,%u,%p): stub
\n
"
,
This
,
id
,
index
,
count
,
values
);
TRACE
(
"(%p)->(%u,%u,%u,%p)
\n
"
,
This
,
id
,
index
,
count
,
values
);
return
E_NOTIMPL
;
if
(
id
>=
This
->
nb_groups
)
return
D3DRMERR_BADVALUE
;
if
((
index
+
count
-
1
)
>=
This
->
groups
[
id
].
nb_vertices
)
return
D3DRMERR_BADVALUE
;
if
(
!
values
)
return
E_POINTER
;
memcpy
(
This
->
groups
[
id
].
vertices
+
index
,
values
,
count
*
sizeof
(
D3DRMVERTEX
));
return
D3DRM_OK
;
}
static
HRESULT
WINAPI
IDirect3DRMMeshImpl_SetGroupColor
(
IDirect3DRMMesh
*
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