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
5c77426d
Commit
5c77426d
authored
Mar 02, 2016
by
Matteo Bruni
Committed by
Alexandre Julliard
Mar 02, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opengl32: Move a TRACE to the proper place.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6c637ab9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
wgl.c
dlls/opengl32/wgl.c
+6
-2
No files found.
dlls/opengl32/wgl.c
View file @
5c77426d
...
...
@@ -1769,6 +1769,9 @@ static GLubyte *filter_extensions_list(const char *extensions, const char *disab
p
=
str
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlen
(
extensions
)
+
2
);
if
(
!
str
)
return
NULL
;
TRACE
(
"GL_EXTENSIONS:
\n
"
);
for
(;;)
{
while
(
*
extensions
==
' '
)
...
...
@@ -1817,6 +1820,9 @@ static GLuint *filter_extensions_index(const char *disabled)
disabled_exts
=
HeapAlloc
(
GetProcessHeap
(),
0
,
disabled_size
*
sizeof
(
*
disabled_exts
));
if
(
!
disabled_exts
)
return
NULL
;
TRACE
(
"GL_EXTENSIONS:
\n
"
);
for
(
j
=
0
;
j
<
extensions_count
;
++
j
)
{
gl_ext
=
(
const
char
*
)
funcs
->
ext
.
p_glGetStringi
(
GL_EXTENSIONS
,
j
);
...
...
@@ -1863,8 +1869,6 @@ static BOOL filter_extensions(const char *extensions, GLubyte **exts_list, GLuin
{
static
const
char
*
disabled
;
TRACE
(
"GL_EXTENSIONS:
\n
"
);
if
(
!
disabled
)
{
HKEY
hkey
;
...
...
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