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
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
Sam Joan Roque-Worcel
wine
Commits
0fad82a9
Commit
0fad82a9
authored
16 years ago
by
James Hawkins
Committed by
Alexandre Julliard
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
opengl32: Trace a test result that fails inconsistently across different drivers.
parent
8c68e18d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/opengl32/tests/opengl.c
+4
-2
4 additions, 2 deletions
dlls/opengl32/tests/opengl.c
with
4 additions
and
2 deletions
dlls/opengl32/tests/opengl.c
+
4
−
2
View file @
0fad82a9
...
...
@@ -210,9 +210,11 @@ static void test_setpixelformat(HDC winhdc)
pf
=
ChoosePixelFormat
(
hdc
,
&
pfd
);
ok
(
pf
!=
0
,
"ChoosePixelFormat failed on main device context
\n
"
);
/* SetPixelFormat on the main device context 'X root window' should fail */
/* SetPixelFormat on the main device context 'X root window' should fail,
* but some broken drivers allow it
*/
res
=
SetPixelFormat
(
hdc
,
pf
,
&
pfd
);
ok
(
res
==
0
,
"SetPixelFormat on main device context
should
fail
\n
"
);
trace
(
"SetPixelFormat on main device context
%s
\n
"
,
res
?
"succeeded"
:
"
fail
ed
"
);
/* Setting the same format that was set on the HDC is allowed; other
formats fail */
...
...
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