Module: wine Branch: master Commit: 7014d04889050a2478fe80315506f8d99d04823a URL: https://gitlab.winehq.org/wine/wine/-/commit/7014d04889050a2478fe80315506f8d...
Author: Rémi Bernon rbernon@codeweavers.com Date: Thu May 30 13:55:13 2024 +0200
winewayland: Remove now unnecessary window surface BITMAPINFO.
---
dlls/winewayland.drv/window_surface.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/dlls/winewayland.drv/window_surface.c b/dlls/winewayland.drv/window_surface.c index 7cff84a5bf7..084f987df6c 100644 --- a/dlls/winewayland.drv/window_surface.c +++ b/dlls/winewayland.drv/window_surface.c @@ -45,7 +45,6 @@ struct wayland_window_surface struct window_surface header; struct wayland_surface *wayland_surface; struct wayland_buffer_queue *wayland_buffer_queue; - BITMAPINFO info; };
static struct wayland_window_surface *wayland_window_surface_cast( @@ -460,7 +459,6 @@ static struct window_surface *wayland_window_surface_create(HWND hwnd, const REC wws = calloc(1, sizeof(*wws)); if (!wws) return NULL; if (!window_surface_init(&wws->header, &wayland_window_surface_funcs, hwnd, rect, info, 0)) goto failed; - wws->info = *info;
TRACE("created %p hwnd %p %s\n", wws, hwnd, wine_dbgstr_rect(rect));