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
fae40b21
Commit
fae40b21
authored
Oct 25, 2008
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Oct 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: Mark some opengl3 tests as wine_todo.
parent
35f58e92
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 @
fae40b21
...
...
@@ -446,7 +446,7 @@ static void test_opengl3(HDC hdc)
gl3Ctx
=
pwglCreateContextAttribsARB
((
HDC
)
0xdeadbeef
,
0
,
0
);
ok
(
gl3Ctx
==
0
,
"pwglCreateContextAttribsARB using an invalid HDC passed
\n
"
);
error
=
GetLastError
();
ok
(
error
==
ERROR_DC_NOT_FOUND
,
"Expected ERROR_DC_NOT_FOUND, got error=%x
\n
"
,
error
);
todo_wine
ok
(
error
==
ERROR_DC_NOT_FOUND
,
"Expected ERROR_DC_NOT_FOUND, got error=%x
\n
"
,
error
);
wglDeleteContext
(
gl3Ctx
);
}
...
...
@@ -457,7 +457,7 @@ static void test_opengl3(HDC hdc)
gl3Ctx
=
pwglCreateContextAttribsARB
(
hdc
,
(
HGLRC
)
0xdeadbeef
,
0
);
ok
(
gl3Ctx
==
0
,
"pwglCreateContextAttribsARB using an invalid shareList passed
\n
"
);
error
=
GetLastError
();
ok
(
error
==
ERROR_INVALID_OPERATION
,
"Expected ERROR_INVALID_OPERATION, got error=%x
\n
"
,
error
);
todo_wine
ok
(
error
==
ERROR_INVALID_OPERATION
,
"Expected ERROR_INVALID_OPERATION, got error=%x
\n
"
,
error
);
wglDeleteContext
(
gl3Ctx
);
}
...
...
@@ -508,7 +508,7 @@ static void test_opengl3(HDC hdc)
/* OpenGL 3.0 allows offscreen rendering WITHOUT a drawable */
/* NOTE: Nvidia's 177.89 beta drivers don't allow this yet */
res
=
wglMakeCurrent
(
0
,
gl3Ctx
);
ok
(
res
==
TRUE
,
"OpenGL 3.0 should allow windowless rendering, but the test failed!
\n
"
);
todo_wine
ok
(
res
==
TRUE
,
"OpenGL 3.0 should allow windowless rendering, but the test failed!
\n
"
);
if
(
res
)
wglMakeCurrent
(
0
,
0
);
...
...
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