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
5f76872e
Commit
5f76872e
authored
Feb 27, 2024
by
Alexandros Frantzis
Committed by
Alexandre Julliard
Mar 13, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winewayland.drv: Implement wgl(Get)SwapIntervalEXT.
parent
065cbb46
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
2 deletions
+64
-2
opengl.c
dlls/winewayland.drv/opengl.c
+64
-2
No files found.
dlls/winewayland.drv/opengl.c
View file @
5f76872e
...
...
@@ -69,6 +69,7 @@ DECL_FUNCPTR(eglInitialize);
DECL_FUNCPTR
(
eglMakeCurrent
);
DECL_FUNCPTR
(
eglQueryString
);
DECL_FUNCPTR
(
eglSwapBuffers
);
DECL_FUNCPTR
(
eglSwapInterval
);
DECL_FUNCPTR
(
glClear
);
#undef DECL_FUNCPTR
...
...
@@ -85,6 +86,7 @@ struct wayland_gl_drawable
struct
wl_egl_window
*
wl_egl_window
;
EGLSurface
surface
;
LONG
resized
;
int
swap_interval
;
};
struct
wgl_context
...
...
@@ -157,6 +159,7 @@ static struct wayland_gl_drawable *wayland_gl_drawable_create(HWND hwnd, int for
gl
->
ref
=
1
;
gl
->
hwnd
=
hwnd
;
gl
->
swap_interval
=
1
;
/* Get the client surface for the HWND. If don't have a wayland surface
* (e.g., HWND_MESSAGE windows) just create a dummy surface to act as the
...
...
@@ -227,7 +230,11 @@ static void wayland_update_gl_drawable(HWND hwnd, struct wayland_gl_drawable *ne
if
((
old
=
find_drawable_for_hwnd
(
hwnd
)))
list_remove
(
&
old
->
entry
);
if
(
new
)
list_add_head
(
&
gl_drawables
,
&
new
->
entry
);
if
(
old
&&
new
)
update_context_drawables
(
new
,
old
);
if
(
old
&&
new
)
{
update_context_drawables
(
new
,
old
);
new
->
swap_interval
=
old
->
swap_interval
;
}
pthread_mutex_unlock
(
&
gl_object_mutex
);
...
...
@@ -408,7 +415,11 @@ static void wgl_context_refresh(struct wgl_context *ctx)
ctx
->
new_read
=
NULL
;
refresh
=
TRUE
;
}
if
(
refresh
)
p_eglMakeCurrent
(
egl_display
,
ctx
->
draw
,
ctx
->
read
,
ctx
->
context
);
if
(
refresh
)
{
p_eglMakeCurrent
(
egl_display
,
ctx
->
draw
,
ctx
->
read
,
ctx
->
context
);
if
(
ctx
->
draw
)
p_eglSwapInterval
(
egl_display
,
ctx
->
draw
->
swap_interval
);
}
pthread_mutex_unlock
(
&
gl_object_mutex
);
...
...
@@ -608,6 +619,21 @@ static PROC wayland_wglGetProcAddress(LPCSTR name)
return
(
PROC
)
p_eglGetProcAddress
(
name
);
}
static
int
wayland_wglGetSwapIntervalEXT
(
void
)
{
struct
wgl_context
*
ctx
=
NtCurrentTeb
()
->
glContext
;
if
(
!
ctx
||
!
ctx
->
draw
)
{
WARN
(
"No GL drawable found, returning swap interval 0
\n
"
);
return
0
;
}
/* It's safe to read the value without a lock, since only
* the current thread can write to it. */
return
ctx
->
draw
->
swap_interval
;
}
static
BOOL
wayland_wglMakeContextCurrentARB
(
HDC
draw_hdc
,
HDC
read_hdc
,
struct
wgl_context
*
ctx
)
{
...
...
@@ -705,6 +731,37 @@ static BOOL wayland_wglSwapBuffers(HDC hdc)
return
TRUE
;
}
static
BOOL
wayland_wglSwapIntervalEXT
(
int
interval
)
{
struct
wgl_context
*
ctx
=
NtCurrentTeb
()
->
glContext
;
BOOL
ret
;
TRACE
(
"(%d)
\n
"
,
interval
);
if
(
interval
<
0
)
{
RtlSetLastWin32Error
(
ERROR_INVALID_DATA
);
return
FALSE
;
}
if
(
!
ctx
||
!
ctx
->
draw
)
{
RtlSetLastWin32Error
(
ERROR_DC_NOT_FOUND
);
return
FALSE
;
}
/* Lock to protect against concurrent access to drawable swap_interval
* from wayland_update_gl_drawable */
pthread_mutex_lock
(
&
gl_object_mutex
);
if
((
ret
=
p_eglSwapInterval
(
egl_display
,
interval
)))
ctx
->
draw
->
swap_interval
=
interval
;
else
RtlSetLastWin32Error
(
ERROR_DC_NOT_FOUND
);
pthread_mutex_unlock
(
&
gl_object_mutex
);
return
ret
;
}
static
BOOL
has_extension
(
const
char
*
list
,
const
char
*
ext
)
{
size_t
len
=
strlen
(
ext
);
...
...
@@ -761,6 +818,10 @@ static BOOL init_opengl_funcs(void)
register_extension
(
"WGL_ARB_create_context_profile"
);
opengl_funcs
.
ext
.
p_wglCreateContextAttribsARB
=
wayland_wglCreateContextAttribsARB
;
register_extension
(
"WGL_EXT_swap_control"
);
opengl_funcs
.
ext
.
p_wglGetSwapIntervalEXT
=
wayland_wglGetSwapIntervalEXT
;
opengl_funcs
.
ext
.
p_wglSwapIntervalEXT
=
wayland_wglSwapIntervalEXT
;
return
TRUE
;
}
...
...
@@ -866,6 +927,7 @@ static void init_opengl(void)
LOAD_FUNCPTR_EGL
(
eglInitialize
);
LOAD_FUNCPTR_EGL
(
eglMakeCurrent
);
LOAD_FUNCPTR_EGL
(
eglSwapBuffers
);
LOAD_FUNCPTR_EGL
(
eglSwapInterval
);
#undef LOAD_FUNCPTR_EGL
egl_display
=
p_eglGetPlatformDisplay
(
EGL_PLATFORM_WAYLAND_KHR
,
...
...
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