Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9120e9ba
Commit
9120e9ba
authored
Nov 14, 2009
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Nov 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32/tests: fix wglShareLists error messages.
parent
9b329b2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
opengl.c
dlls/opengl32/tests/opengl.c
+3
-3
No files found.
dlls/opengl32/tests/opengl.c
View file @
9120e9ba
...
...
@@ -314,7 +314,7 @@ static void test_sharelists(HDC winhdc)
res
=
wglMakeCurrent
(
winhdc
,
hglrc2
);
ok
(
res
,
"Make current failed
\n
"
);
res
=
wglShareLists
(
hglrc1
,
hglrc2
);
todo_wine
ok
(
res
,
"Sharing display lists with a destination context which has been made current
pass
ed
\n
"
);
todo_wine
ok
(
res
,
"Sharing display lists with a destination context which has been made current
fail
ed
\n
"
);
wglMakeCurrent
(
0
,
0
);
wglDeleteContext
(
hglrc2
);
}
...
...
@@ -325,7 +325,7 @@ static void test_sharelists(HDC winhdc)
if
(
hglrc3
)
{
res
=
wglShareLists
(
hglrc3
,
hglrc1
);
ok
(
res
==
FALSE
,
"Sharing of display lists
fail
ed for a context which already shared lists before
\n
"
);
ok
(
res
==
FALSE
,
"Sharing of display lists
pass
ed for a context which already shared lists before
\n
"
);
wglDeleteContext
(
hglrc3
);
}
...
...
@@ -336,7 +336,7 @@ static void test_sharelists(HDC winhdc)
res
=
wglMakeCurrent
(
winhdc
,
hglrc1
);
ok
(
res
,
"Make current failed
\n
"
);
res
=
wglShareLists
(
hglrc1
,
hglrc2
);
ok
(
res
,
"Sharing display lists with a source context which has been made current
pass
ed
\n
"
);
ok
(
res
,
"Sharing display lists with a source context which has been made current
fail
ed
\n
"
);
wglMakeCurrent
(
0
,
0
);
wglDeleteContext
(
hglrc2
);
}
...
...
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