mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-26 16:47:25 -04:00
[rlsw] Some platform fixes (#5720)
* fix drm with rlsw * fix window resizing with sdl * fix window resizing with win32
This commit is contained in:
@ -2091,6 +2091,10 @@ static void HandleWindowResize(HWND hwnd, int *width, int *height)
|
||||
|
||||
CORE.Window.screenScale = MatrixScale( (float)CORE.Window.render.width/CORE.Window.screen.width,
|
||||
(float)CORE.Window.render.height/CORE.Window.screen.height, 1.0f);
|
||||
|
||||
#if defined(GRAPHICS_API_OPENGL_SOFTWARE)
|
||||
swResize(clientSize.cx, clientSize.cy);
|
||||
#endif
|
||||
}
|
||||
|
||||
// Update window style
|
||||
|
||||
Reference in New Issue
Block a user