xroberx
xroberx
You are right: https://github.com/tree-sitter/tree-sitter-bash/issues/159#issuecomment-1482214316
Yes, please, this is a must when working on large obfuscated files. What needs to be done to implement this feature?
> Those are the correct values. `GetMonitorWidth()`, `GetMonitorHeight()` are returning the exact sizes provided by GLFW ([ref](https://github.com/raysan5/raylib/blob/master/src/platforms/rcore_desktop_glfw.c#L852-L854), [ref](https://github.com/raysan5/raylib/blob/master/src/platforms/rcore_desktop_glfw.c#L871-L873)) or SDL ([ref](https://github.com/raysan5/raylib/blob/master/src/platforms/rcore_desktop_sdl.c#L957-L958), [ref](https://github.com/raysan5/raylib/blob/master/src/platforms/rcore_desktop_sdl.c#L974-L975)), as they should. > > If you want...
> I didn't add implementation for SDL, just GLFW and web. Yes, I know. I used the GLFW backend. The SDL3 test program is not using raylib, it is using...
> Tested on `Linux Mint 22 MATE Edition` with `X11` and everything is working correctly here. > Logs > > ``` > $ lsb_release -a > No LSB modules are...
I have been doing some more testing... I have recompiled raylib with the new RGFW backend and now it behaves likes SDL3. Now GetMonitorWidth()/GetMonitorHeight() return the "virtual" resolution of the...
Hi there again! I finally found the issue. It is an upstream issue of GLFW -> https://github.com/glfw/glfw/issues/1961 As I said, both the SDL3 and RGFW backends return the proper values....
> @xroberx > > > RGFW seems to be terribly broken > > What specifically is broken? Apart from SetWindowSize() not working, try the following code: ``` #include int main()...
> Renamed since the issue is actually for compiling in the context of people in nix/aur environments. Existing builds of Recaf run fine in JDK 23/24. Hi Matt, Actually, the...
Hi Matt, I am unable to build with JDK 24, could you please share the steps you followed? I changed languageVersion = JavaLanguageVersion.of(22) to languageVersion = JavaLanguageVersion.of(24), but I am...