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
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Tim Clem
wine
Commits
c4eb3de8
Commit
c4eb3de8
authored
17 years ago
by
Stefan Dösinger
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
d3d9: Fix vertex decl test.
parent
fa355572
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/d3d9/tests/vertexdeclaration.c
+3
-1
3 additions, 1 deletion
dlls/d3d9/tests/vertexdeclaration.c
with
3 additions
and
1 deletion
dlls/d3d9/tests/vertexdeclaration.c
+
3
−
1
View file @
c4eb3de8
...
...
@@ -686,7 +686,7 @@ static void test_fvf_decl_management(
ok
(
SUCCEEDED
(
hr
),
"SetFVF returned %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
if
(
FAILED
(
hr
))
return
;
/* The contents should correspond to the
second
conversion */
/* The contents should correspond to the
first
conversion */
VDECL_CHECK
(
compare_elements
(
result_decl1
,
test_elements1
));
/* Get converted decl (#3) */
...
...
@@ -700,6 +700,8 @@ static void test_fvf_decl_management(
/* The contents should correspond to the second conversion */
VDECL_CHECK
(
compare_elements
(
result_decl3
,
test_elements2
));
/* Re-Check if the first decl was overwritten by the new Get() */
VDECL_CHECK
(
compare_elements
(
result_decl1
,
test_elements1
));
/* The refcounts should all be 1 */
ref1
=
get_refcount
((
IUnknown
*
)
result_decl1
);
...
...
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