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
6df3f23b
Commit
6df3f23b
authored
Jun 29, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add some missing GL locking to init_format_fbo_compat_info().
parent
75529e66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
utils.c
dlls/wined3d/utils.c
+8
-0
No files found.
dlls/wined3d/utils.c
View file @
6df3f23b
...
...
@@ -592,8 +592,12 @@ static void init_format_fbo_compat_info(WineD3D_GL_Info *gl_info)
if
(
wined3d_settings
.
offscreen_rendering_mode
==
ORM_FBO
)
{
ENTER_GL
();
GL_EXTCALL
(
glGenFramebuffersEXT
(
1
,
&
fbo
));
GL_EXTCALL
(
glBindFramebufferEXT
(
GL_FRAMEBUFFER_EXT
,
fbo
));
LEAVE_GL
();
}
for
(
i
=
0
;
i
<
sizeof
(
formats
)
/
sizeof
(
*
formats
);
++
i
)
...
...
@@ -661,7 +665,11 @@ static void init_format_fbo_compat_info(WineD3D_GL_Info *gl_info)
if
(
wined3d_settings
.
offscreen_rendering_mode
==
ORM_FBO
)
{
ENTER_GL
();
GL_EXTCALL
(
glDeleteFramebuffersEXT
(
1
,
&
fbo
));
LEAVE_GL
();
}
}
...
...
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