[rcore][win32] workaround unused function error SetupFramebuffer
This commit is contained in:
parent
93dc95eb2e
commit
0961320e5d
1 changed files with 5 additions and 0 deletions
|
@ -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; */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue