| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Reviewed flags formating
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* added viewport independent raycast
* Renamed GetMouseRayEx to GetViewRay
|
|
|
|
* Update rcore.c
fix [rcore] GetFileNameWithoutExt
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
* Update rcore.c
|
|
Co-authored-by: Arthur <[email protected]>
|
|
|
|
|
|
* Add BDF font support
* Include font ascent in glyph y-offset when loading BDF font
|
|
Bump supported raylib version of Raylib-cs to 5.0
|
|
`char *txtData = (char *)RL_CALLOC(waveDataSize * 6 + 2000, sizeof(char));`
assumes every chunk being added to txtData is 6 bytes. This is not always true, sometimes a newline is involved and the data becomes 12 bytes instead, and this can cause a random segfault.
This commit changes `6` to `12`, and explains why in the comment.
|
|
|
|
|
|
|
|
|
|
* Only restore GL scale back to screen scale if we are returning to a screen, not a render texture.
* blankspace
* reset back to default screen scale when ending a render texture since we are back on the default fbo
|
|
|
|
* Added GetFileNameWithoutExt, GetFileName & strprbrk to raudio.c
* Gave return values to SaveFileData & SaveFileText in raudio.c
|
|
Fix rlSetUniformSampler not setting sampler uniform if the same texture was already passed to a different sampler uniform
|
|
|
|
incorrect index (#3758)
|
|
|
|
|
|
* [raymath.h] Small refactor to avoid duplicated code
* Fixing some blank spaces to match same syle convention
|
|
|
|
|
|
There is a typo where 'undoubtdly' appears instead of 'undoubtedly'.
|
|
* Fix Android keycode translation
* Simplify code a bit
* Rename KEYCODE_MAPPED_NUM to KEYCODE_MAP_SIZE
* Fix KEY_R and KEY_MENU duplicate
* Update raylib_api.* by CI
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
|
|
Move/Add Feature Test Macros before any includes.
See: [GNU Feature Test Macros](https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html)
> You should define these macros by using ‘#define’ preprocessor directives at the top of your source code files. These directives must come before any #include of a system header file. It is best to make them the very first thing in the file, preceded only by comments.
Alternative changes to rcore would be to change _POSIX_C_SOURCE to
200809L, which removes the need to define _XOPEN_SOURCE >= 500.
These changes allow for compilation with -std=c* (such as -std=c99)
without adding -D macros to the build step.
Co-authored-by: JayLCypher <[email protected]>
|
|
* Fix that touch doesn't work for click/drag/raygui
* Add comments
* comments update
|
|
|
|
|
|
|
|
|
|
https://github.com/raysan5/raygui/issues/364
|
|
times (Windows looks at center of window while the old raylib code looked on upper left corner of window, now it just uses the glfw function to fetch the window's current scaling). Also introduced a callback to update the CORE.Window.screenScaling when the content scaling updates, previously scaling did not work correctly on systems with multiple monitors that have different DPI scaling. (#3701)
|
|
0.12.0-dev.2139 (#3727)
* update build.zig to 0.12.0-dev.2139 and add shared lib option
* add no-sanitize workarounds
|
|
|
|
* update build.zig for latest zig 0.12.0dev while still allowing 0.11.0
* update examples/build.zig and add nicer message for type mismatch
|