Module: wine Branch: master Commit: 1b4ace844994c641f1b0043d975b0f9cd247749e URL: https://gitlab.winehq.org/wine/wine/-/commit/1b4ace844994c641f1b0043d975b0f9...
Author: Alexandros Frantzis alexandros.frantzis@collabora.com Date: Mon Apr 29 11:11:09 2024 +0300
wineandroid.drv: Rename wgl_pixel_format to avoid name conflicts.
---
dlls/wineandroid.drv/opengl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wineandroid.drv/opengl.c b/dlls/wineandroid.drv/opengl.c index 99d2e3cebe1..ecc6e9b7d20 100644 --- a/dlls/wineandroid.drv/opengl.c +++ b/dlls/wineandroid.drv/opengl.c @@ -68,7 +68,7 @@ DECL_FUNCPTR( eglSwapInterval );
static const int egl_client_version = 2;
-struct wgl_pixel_format +struct egl_pixel_format { EGLConfig config; }; @@ -96,7 +96,7 @@ struct gl_drawable
static void *egl_handle; static void *opengl_handle; -static struct wgl_pixel_format *pixel_formats; +static struct egl_pixel_format *pixel_formats; static int nb_pixel_formats, nb_onscreen_formats; static EGLDisplay display; static int swap_interval;