Ray

Results 471 comments of Ray

Reecently an SHA-256 implementation [was added to raylib](https://github.com/raysan5/raylib/blob/master/src/rcore.c#L2998), it was validate against other implementation. In case it could be useful for anyone: ```c // Compute SHA-256 hash code // NOTE:...

@sshane Are you using latest raylib from GitHub master branch? I don't know what version Python binding is using but raylib 5.5 is +1300 commits behind master. Some improvements were...

[This change on `rtext/LoadFontData()`](https://github.com/raysan5/raylib/commit/29ce5d8aa9d261eba395e24437e08c6bd744616e) from `02 September 2025` could improve atlas generation considerably. Details: > This redesign is a big improvement on font loading time and memory requirements. It only...

@lordphone Added some review comments

@CodingMadness Not yet. What is your specific use-case requiring this change?

Here it is a table listing the C file-system functions dependencies for raylib functions: | raylib function | C / POSIX functions used | Notes | |---------------------------|--------------------------------------------------------|------| | LoadFileData() |...

@konsumer Definitely I prefer the macros approach ovr callbacks, despite being only available at compile time. Still thinking how to address it because there are other related implications, at the...

@konsumer thanks for working on this issue and sending a PR, I still need to think about the best way to support it, making it the less intrusive for raylib...

@konsumer Note that already removed [`utils`] module and refactored all requireed code.

@konsumer Here it the code you send in you PR that would be added to `config.h` **if** this feature is implemented: ```c // File system operations abstraction // NOTE: Require...