Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
23db9d8b
Commit
23db9d8b
authored
12 years ago
by
Christian Costa
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
d3drm: Pass mesh builder color to newly created mesh.
parent
b7a74b02
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/d3drm/meshbuilder.c
+2
-0
2 additions, 0 deletions
dlls/d3drm/meshbuilder.c
dlls/d3drm/tests/d3drm.c
+1
-1
1 addition, 1 deletion
dlls/d3drm/tests/d3drm.c
with
3 additions
and
1 deletion
dlls/d3drm/meshbuilder.c
+
2
−
0
View file @
23db9d8b
...
...
@@ -2021,6 +2021,8 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder3Impl_CreateMesh(IDirect3DRMMeshBuil
hr
=
E_OUTOFMEMORY
;
}
}
if
(
SUCCEEDED
(
hr
))
hr
=
IDirect3DRMMesh_SetGroupColor
(
*
mesh
,
0
,
This
->
color
);
if
(
SUCCEEDED
(
hr
))
hr
=
IDirect3DRMMesh_SetGroupMaterial
(
*
mesh
,
0
,
(
LPDIRECT3DRMMATERIAL
)
This
->
material
);
if
(
FAILED
(
hr
))
...
...
This diff is collapsed.
Click to expand it.
dlls/d3drm/tests/d3drm.c
+
1
−
1
View file @
23db9d8b
...
...
@@ -369,7 +369,7 @@ static void test_MeshBuilder(void)
todo_wine
ok
(
nb_face_vertices
==
3
,
"Wrong number of vertices per face %u (must be 3)
\n
"
,
nb_face_vertices
);
todo_wine
ok
(
data_size
==
3
,
"Wrong number of face data bytes %u (must be 3)
\n
"
,
data_size
);
color
=
IDirect3DRMMesh_GetGroupColor
(
mesh
,
0
);
todo_wine
ok
(
color
==
0xff00ff00
,
"Wrong color returned %#x instead of %#x
\n
"
,
color
,
0xff00ff00
);
ok
(
color
==
0xff00ff00
,
"Wrong color returned %#x instead of %#x
\n
"
,
color
,
0xff00ff00
);
hr
=
IDirect3DRMMesh_GetGroupTexture
(
mesh
,
0
,
&
texture
);
ok
(
hr
==
D3DRM_OK
,
"GetCroupTexture failed returning hr = %x
\n
"
,
hr
);
ok
(
texture
==
NULL
,
"No texture should be present
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment