Colleague Riley Mabb

Results 103 comments of Colleague Riley Mabb

@SuperUserNameMan Could you try to change it to ```c Vector2 GetWindowScaleDPI(void) { RGFW_monitor monitor = RGFW_window_getMonitor(platform.window); return (Vector2){monitor.scaleX, monitor.scaleX}; } ``` instead?

@SuperUserNameMan I get {1.0, 1.0} on both glfw and rgfw no matter what settings I have. Could be something with manjaro.

This should be fixed by this PR https://github.com/raysan5/raylib/pull/4144 I'm pretty sure `ToggleFullscreen()` won't work properly unless you enable the allow resize flags (with raylib). `SetConfigFlags(FLAG_WINDOW_RESIZABLE);` (before the window is created)

I'm not sure how GLFW handles this, but RGFW allows resizing by default unless the RGFW_NO_RESIZE argument is passed to the createWindow function.

I added CMakeFiles, but they should be reviewed by someone more familiar with CMake.

Thank you for telling me. I'll be looking into this asap.

> Also, a few of the routines at the top do not have RGFWDEF on it so they won't get exported. I use this with Delphi so every update I...

I'm not sure where the 2.76 scale is coming from, based on my tests the scale was always 1 because DPIAware was not enabled. It's now enabled via [`SetProcessDPIAware`](https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setprocessdpiaware). Let...

I was getting the proper values on my side. Although based on the documentation, that makes sense. I'm not sure why the scale function isn't working, I'll look into it...