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
fc37ed94
Commit
fc37ed94
authored
Mar 23, 2014
by
Ken Thomases
Committed by
Alexandre Julliard
Mar 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Improve handling of swap interval with respect to pbuffers, clamping to 0.
parent
10f50b89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
22 deletions
+44
-22
opengl.c
dlls/winemac.drv/opengl.c
+44
-22
No files found.
dlls/winemac.drv/opengl.c
View file @
fc37ed94
...
...
@@ -1504,13 +1504,25 @@ static BOOL set_swap_interval(struct wgl_context *context, long interval)
*/
static
void
sync_swap_interval
(
struct
wgl_context
*
context
)
{
struct
macdrv_win_data
*
data
;
if
(
InterlockedCompareExchange
(
&
context
->
update_swap_interval
,
FALSE
,
TRUE
)
&&
(
data
=
get_win_data
(
context
->
draw_hwnd
)))
if
(
InterlockedCompareExchange
(
&
context
->
update_swap_interval
,
FALSE
,
TRUE
))
{
set_swap_interval
(
context
,
data
->
swap_interval
);
release_win_data
(
data
);
int
interval
;
if
(
context
->
draw_hwnd
)
{
struct
macdrv_win_data
*
data
=
get_win_data
(
context
->
draw_hwnd
);
if
(
data
)
{
interval
=
data
->
swap_interval
;
release_win_data
(
data
);
}
else
/* window was destroyed? */
interval
=
1
;
}
else
/* pbuffer */
interval
=
0
;
set_swap_interval
(
context
,
interval
);
}
}
...
...
@@ -2718,6 +2730,10 @@ static BOOL macdrv_wglMakeContextCurrentARB(HDC draw_hdc, HDC read_hdc, struct w
SetLastError
(
ERROR_INVALID_PIXEL_FORMAT
);
return
FALSE
;
}
if
(
allow_vsync
&&
(
InterlockedCompareExchange
(
&
context
->
update_swap_interval
,
FALSE
,
TRUE
)
||
pbuffer
!=
context
->
draw_pbuffer
))
set_swap_interval
(
context
,
0
);
}
else
{
...
...
@@ -3019,7 +3035,7 @@ static BOOL macdrv_wglSetPixelFormatWINE(HDC hdc, int fmt)
static
BOOL
macdrv_wglSwapIntervalEXT
(
int
interval
)
{
struct
wgl_context
*
context
=
NtCurrentTeb
()
->
glContext
;
struct
macdrv_win_data
*
data
;
BOOL
changed
=
FALSE
;
TRACE
(
"interval %d
\n
"
,
interval
);
...
...
@@ -3031,6 +3047,20 @@ static BOOL macdrv_wglSwapIntervalEXT(int interval)
if
(
interval
>
1
)
interval
=
1
;
if
(
context
->
draw_hwnd
)
{
struct
macdrv_win_data
*
data
=
get_win_data
(
context
->
draw_hwnd
);
if
(
data
)
{
changed
=
data
->
swap_interval
!=
interval
;
if
(
changed
)
data
->
swap_interval
=
interval
;
release_win_data
(
data
);
}
}
else
/* pbuffer */
interval
=
0
;
InterlockedExchange
(
&
context
->
update_swap_interval
,
FALSE
);
if
(
!
set_swap_interval
(
context
,
interval
))
{
...
...
@@ -3038,25 +3068,17 @@ static BOOL macdrv_wglSwapIntervalEXT(int interval)
return
FALSE
;
}
if
(
(
data
=
get_win_data
(
context
->
draw_hwnd
))
)
if
(
changed
)
{
BOOL
changed
=
data
->
swap_interval
!=
interval
;
if
(
changed
)
data
->
swap_interval
=
interval
;
release_win_data
(
data
);
struct
wgl_context
*
ctx
;
if
(
changed
)
EnterCriticalSection
(
&
context_section
);
LIST_FOR_EACH_ENTRY
(
ctx
,
&
context_list
,
struct
wgl_context
,
entry
)
{
struct
wgl_context
*
ctx
;
EnterCriticalSection
(
&
context_section
);
LIST_FOR_EACH_ENTRY
(
ctx
,
&
context_list
,
struct
wgl_context
,
entry
)
{
if
(
ctx
!=
context
&&
ctx
->
draw_hwnd
==
context
->
draw_hwnd
)
InterlockedExchange
(
&
context
->
update_swap_interval
,
TRUE
);
}
LeaveCriticalSection
(
&
context_section
);
if
(
ctx
!=
context
&&
ctx
->
draw_hwnd
==
context
->
draw_hwnd
)
InterlockedExchange
(
&
context
->
update_swap_interval
,
TRUE
);
}
LeaveCriticalSection
(
&
context_section
);
}
return
TRUE
;
...
...
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