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
2a14dc95
Commit
2a14dc95
authored
Nov 05, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Fix failure of X11DRV_ChoosePixelFormat.
parent
1ae4ab6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
opengl.c
dlls/winex11.drv/opengl.c
+2
-2
No files found.
dlls/winex11.drv/opengl.c
View file @
2a14dc95
...
...
@@ -873,9 +873,9 @@ int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
}
/* Get a list containing all supported FB configurations */
cfgs
=
pglX
ChooseFBConfig
(
gdi_display
,
DefaultScreen
(
gdi_display
),
NULL
,
&
nCfgs
);
cfgs
=
pglX
GetFBConfigs
(
gdi_display
,
DefaultScreen
(
gdi_display
)
,
&
nCfgs
);
if
(
NULL
==
cfgs
||
0
==
nCfgs
)
{
ERR
(
"glX
ChooseFBConfig
returns NULL (glError: %d)
\n
"
,
pglGetError
());
ERR
(
"glX
GetFBConfigs
returns NULL (glError: %d)
\n
"
,
pglGetError
());
goto
choose_exit
;
}
...
...
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