From 36f2e7584258bea0b6d71aed7108f5afe11ea494 Mon Sep 17 00:00:00 2001 From: Charles Giessen Date: Fri, 18 Jul 2025 13:55:07 -0500 Subject: cube: Fix wayland resize broken when extent is 0xFFFFFFFF This is a 'magic value' that shouldn't be allowed to overwrite the current window width & height. There is code to handle the value, but not everywhere it can come from. --- cube/cube.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'cube/cube.c') diff --git a/cube/cube.c b/cube/cube.c index a616af24..c7299e8c 100644 --- a/cube/cube.c +++ b/cube/cube.c @@ -1351,8 +1351,6 @@ static void demo_draw(struct demo *demo) { assert(!err); if (surfCapabilities.currentExtent.width != (uint32_t)demo->width || surfCapabilities.currentExtent.height != (uint32_t)demo->height) { - demo->width = surfCapabilities.currentExtent.width; - demo->height = surfCapabilities.currentExtent.height; demo_resize(demo); } } else if (err == VK_ERROR_SURFACE_LOST_KHR) { -- cgit v1.2.3