[rcore][win32] workaround unused function error SetupFramebuffer
This commit is contained in:
parent
93dc95eb2e
commit
0961320e5d
|
|
@ -977,6 +977,11 @@ static void HandleWindowResize(HWND hwnd, Vector2 *appScreenSizeRef)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
SIZE clientSize = GetClientSize(hwnd);
|
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);
|
TRACELOG(LOG_DEBUG, "NewClientSize %lux%lu", clientSize.cx, clientSize.cy);
|
||||||
/* CORE.Window.currentFbo.width = clientSize.cx; */
|
/* CORE.Window.currentFbo.width = clientSize.cx; */
|
||||||
/* CORE.Window.currentFbo.height = clientSize.cy; */
|
/* CORE.Window.currentFbo.height = clientSize.cy; */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user