[rcore][win32] workaround unused function error SetupFramebuffer

This commit is contained in:
Jonathan Marler 2025-04-18 09:03:04 -06:00
parent 93dc95eb2e
commit 0961320e5d

View file

@ -977,6 +977,11 @@ static void HandleWindowResize(HWND hwnd, Vector2 *appScreenSizeRef)
return;
SIZE clientSize = GetClientSize(hwnd);
// TODO: not sure if this function is doing what we need, leaving this disabled
// call to workaround unused function error
if (0) SetupFramebuffer(0, 0);
TRACELOG(LOG_DEBUG, "NewClientSize %lux%lu", clientSize.cx, clientSize.cy);
/* CORE.Window.currentFbo.width = clientSize.cx; */
/* CORE.Window.currentFbo.height = clientSize.cy; */