Re: [PATCH v3 2/6] ui/sdl2: Implement dpy dmabuf functions

2024-11-09 Thread Dmitry Osipenko
On 11/9/24 13:07, Akihiko Odaki wrote: > On 2024/11/09 15:52, Dmitry Osipenko wrote: >> Accidentally missed this email a week ago. Thanks again for all the >> reviews! >> >> On 10/31/24 10:32, Akihiko Odaki wrote: >> ...    +# libx11 presents together with SDL or GTK libs on systems that

Re: [PATCH v3 2/6] ui/sdl2: Implement dpy dmabuf functions

2024-11-09 Thread Akihiko Odaki
On 2024/11/09 15:52, Dmitry Osipenko wrote: Accidentally missed this email a week ago. Thanks again for all the reviews! On 10/31/24 10:32, Akihiko Odaki wrote: ...   +# libx11 presents together with SDL or GTK libs on systems that support X11 +xlib = dependency('x11', required: false) There

Re: [PATCH v3 2/6] ui/sdl2: Implement dpy dmabuf functions

2024-11-08 Thread Dmitry Osipenko
Accidentally missed this email a week ago. Thanks again for all the reviews! On 10/31/24 10:32, Akihiko Odaki wrote: ... >>   +# libx11 presents together with SDL or GTK libs on systems that >> support X11 >> +xlib = dependency('x11', required: false) > > There is a line saying: > x11 = dependenc

Re: [PATCH v3 2/6] ui/sdl2: Implement dpy dmabuf functions

2024-10-31 Thread Akihiko Odaki
On 2024/10/25 8:33, Dmitry Osipenko wrote: From: Pierre-Eric Pelloux-Prayer If EGL is used, we can rely on dmabuf to import textures without doing copies. To get this working on X11, we use the existing SDL hint: SDL_HINT_VIDEO_X11_FORCE_EGL (because dmabuf can't be used with GLX). Signed-off

[PATCH v3 2/6] ui/sdl2: Implement dpy dmabuf functions

2024-10-24 Thread Dmitry Osipenko
From: Pierre-Eric Pelloux-Prayer If EGL is used, we can rely on dmabuf to import textures without doing copies. To get this working on X11, we use the existing SDL hint: SDL_HINT_VIDEO_X11_FORCE_EGL (because dmabuf can't be used with GLX). Signed-off-by: Pierre-Eric Pelloux-Prayer Signed-off-b