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
7959be38
Commit
7959be38
authored
Aug 09, 2007
by
Chris Robinson
Committed by
Alexandre Julliard
Aug 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Don't add spaces to the beginning of the wglExtensions list.
parent
ccaddb8a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
opengl.c
dlls/winex11.drv/opengl.c
+2
-4
No files found.
dlls/winex11.drv/opengl.c
View file @
7959be38
...
...
@@ -3003,6 +3003,7 @@ static BOOL glxRequireExtension(const char *requiredExtension)
static
void
register_extension_string
(
const
char
*
ext
)
{
if
(
WineGLInfo
.
wglExtensions
[
0
])
strcat
(
WineGLInfo
.
wglExtensions
,
" "
);
strcat
(
WineGLInfo
.
wglExtensions
,
ext
);
...
...
@@ -3016,10 +3017,7 @@ static BOOL register_extension(const WineGLExtension * ext)
assert
(
WineGLExtensionListSize
<
MAX_EXTENSIONS
);
WineGLExtensionList
[
WineGLExtensionListSize
++
]
=
ext
;
strcat
(
WineGLInfo
.
wglExtensions
,
" "
);
strcat
(
WineGLInfo
.
wglExtensions
,
ext
->
extName
);
TRACE
(
"'%s'
\n
"
,
ext
->
extName
);
register_extension_string
(
ext
->
extName
);
for
(
i
=
0
;
ext
->
extEntryPoints
[
i
].
funcName
;
++
i
)
TRACE
(
" - '%s'
\n
"
,
ext
->
extEntryPoints
[
i
].
funcName
);
...
...
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