Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1874f314
Commit
1874f314
authored
Nov 18, 2009
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Nov 19, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: No display driver supports windowless opengl3 rendering and likely no…
opengl32: No display driver supports windowless opengl3 rendering and likely no driver will ever will.
parent
52100e96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
opengl.c
dlls/opengl32/tests/opengl.c
+6
-3
No files found.
dlls/opengl32/tests/opengl.c
View file @
1874f314
...
...
@@ -641,10 +641,13 @@ static void test_opengl3(HDC hdc)
gl3Ctx
=
pwglCreateContextAttribsARB
(
hdc
,
0
,
attribs
);
ok
(
gl3Ctx
!=
0
,
"pwglCreateContextAttribsARB for a 3.0 context failed!
\n
"
);
/* OpenGL 3.0 allows offscreen rendering WITHOUT a drawable */
/* NOTE: Nvidia's 177.89 beta drivers don't allow this yet */
/* OpenGL 3.0 allows offscreen rendering WITHOUT a drawable
* Neither AMD or Nvidia support it at this point. The WGL_ARB_create_context specs also say that
* it is hard because drivers use the HDC to enter the display driver and it sounds like they don't
* expect drivers to ever offer it.
*/
res
=
wglMakeCurrent
(
0
,
gl3Ctx
);
todo_wine
ok
(
res
==
TRUE
,
"OpenGL 3.0 should allow windowless rendering, but the test failed
!
\n
"
);
ok
(
res
==
FALSE
,
"Wow, OpenGL 3.0 windowless rendering passed while it was expected not to
!
\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