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
daaf08f0
Commit
daaf08f0
authored
Jul 28, 2007
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Jul 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wgl: Enable WGL_EXT_swap_control by default even when the GLX version isn't there.
parent
96f9cceb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
opengl.c
dlls/winex11.drv/opengl.c
+3
-2
No files found.
dlls/winex11.drv/opengl.c
View file @
daaf08f0
...
@@ -3037,8 +3037,9 @@ static void X11DRV_WineGL_LoadExtensions(void)
...
@@ -3037,8 +3037,9 @@ static void X11DRV_WineGL_LoadExtensions(void)
register_extension
(
&
WGL_EXT_extensions_string
);
register_extension
(
&
WGL_EXT_extensions_string
);
if
(
glxRequireExtension
(
"GLX_SGI_swap_control"
))
/* Load this extension even when it isn't backed by a GLX extension because it is has been around for ages.
register_extension
(
&
WGL_EXT_swap_control
);
* Games like Call of Duty and K.O.T.O.R. rely on it. Further our emulation is good enough. */
register_extension
(
&
WGL_EXT_swap_control
);
/* The OpenGL extension GL_NV_vertex_array_range adds wgl/glX functions which aren't exported as 'real' wgl/glX extensions. */
/* The OpenGL extension GL_NV_vertex_array_range adds wgl/glX functions which aren't exported as 'real' wgl/glX extensions. */
if
(
strstr
(
WineGLInfo
.
glExtensions
,
"GL_NV_vertex_array_range"
)
!=
NULL
)
if
(
strstr
(
WineGLInfo
.
glExtensions
,
"GL_NV_vertex_array_range"
)
!=
NULL
)
...
...
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