Calvin Day
Calvin Day
Working perfectly on my Samsung Note 8 (not rooted) with just a usb-c to usb-c cable
What verson of OpenGL are you running? From what I can tell this appears to be an version specific issue.
I believe the issue is that in OpenGL 3.0 `glbegin()` is depreciated and errors when called. Can you try manually setting your OpenGL version to 3.3 at line 953 in...
I can only test on the platforms I have access to, sadly. If users can test platforms and report them on this issue or via the Raylib discord I'd be...
I was unable to recreate your issue with the linker error on my machine, so that may be an issue with the OSX lwjgl natives I included in the Raylib-J...
I'd recommend trying to enable the `HIGH_DPI` config flag: ```java rlj.core.SetWindowState(Config.ConfigFlag.FLAG_WINDOW_HIGHDPI); ```
The Gradle fork is currently maintained [here](https://github.com/jalexcole/Raylib-J) However, from the GLFW error given it would appear the issue is your pi does not support the OpenGL version the system is...
The empty constructor is due to code optimization during compilation. You can see the lines that were previously in the default constructor have been moved to be inline with the...
Would the file that fails to load be your fragment shader file? I see in your example code you have `shaders/star.rs` I'm not sure if this is a typo on...