c35e136471
Merge branch 'master' of https://github.com/raysan5/raylib
2025-06-24 20:11:37 +02:00
44f670899c
REVIEWED: Avoid rtext dependency on rcore_desktop_sdl #4959
2025-06-24 20:11:35 +02:00
6266d0f419
Fix typo on config.h
2025-06-24 13:48:20 +02:00
b677376088
Delete shader in case compilation fails
2025-06-22 23:52:34 +02:00
1abac023bd
Update rcore.c
2025-06-20 23:34:41 +02:00
518ad8b018
Fix ScanDirectoryFilesRecursively
...
Fixes a regression since 5.5, where `ScanDirectoryFilesRecursively` no
longer does the "recursively" part due to `path` being `static`.
The issue was once already fixed in
5530a3ceb8
but recently made it back it in.
2025-06-20 01:39:01 +02:00
96c898852c
Update RGFW
2025-06-12 19:23:12 -03:00
3e336e4470
Reviewed warning
2025-06-11 19:52:35 +02:00
59bcf680aa
Code gardening...
2025-06-07 20:14:24 +02:00
533c12c386
Small security tweaks
2025-06-07 15:33:35 +02:00
8d319b1004
Merge pull request #4983 from M374LX/miniaudio-update
...
Update miniaudio to v0.11.22
2025-06-02 18:52:59 +02:00
d218db9eec
Merge pull request #4982 from LainLayer/rgfw-timeout
...
Change `RGFW_window_eventWait` timeout to -1 to fix `EnableEventWaiting`
2025-06-02 18:50:11 +02:00
714de02a88
Merge pull request #4980 from williewillus/pr4980
...
[rshapes] Fix incorrect parameter names in DrawRectangleGradientEx
2025-06-02 18:37:34 +02:00
bb5b5434a7
Update miniaudio to v0.11.22
2025-06-01 14:37:01 -03:00
51958d6e2c
changed RGFW_window_eventWait timeout to -1
2025-06-01 17:37:31 +03:00
19ae6f2c2d
[rshapes] Fix incorrect parameter names in DrawRectangleGradientEx
...
Examining the code shows that the rectangle is drawn winding counterclockwise, starting
with the top left. Therefore the colors used should be in the order: topLeft, bottomLeft,
bottomRight, topRight.
However, the variables actually being used are topLeft, bottomLeft, topRight,
bottomRight. I was confused by this as I was getting striping where I didn't expect any.
Put another way, the last two parameters are misnamed.
This diff swaps the parameter names and their usages. The result is that no runtime
behaviour changes: the same parameter order yields the same visual result both before and
after this change, but the parameter names now correctly reflect what they are actually
used for.
You can actually see this in the implementation of DrawRectangleGradientV, which
(correctly) passes top, bottom, bottom, top to DrawRectangleGradientEx.
2025-05-31 23:00:40 -07:00
296e3af470
add const qualifier to ImageDrawTriangleFan and ImageDrawTriangleStrip arguments
2025-05-31 14:24:56 -07:00
6eeaf1dd5b
Update RGFW to 1.7.5-dev
2025-05-31 16:43:25 -03:00
c1bb53738e
Merge pull request #4974 from M374LX/rgfw-escape-fix
...
RGFW: fix Escape always closing the window
2025-05-31 20:43:40 +02:00
9bf4388a4f
Merge pull request #4965 from M374LX/rgfw-update
...
Update RGFW to 1.7
2025-05-31 20:42:08 +02:00
20c0c92bdb
Merge pull request #4963 from meowstr/master
...
[rshapes] Add DrawEllipseV and DrawEllipseLinesV
2025-05-31 20:41:37 +02:00
bc2b2864e0
RGFW: fix Escape always closing the window
2025-05-31 14:24:38 -03:00
3418172617
Update comments
2025-05-29 23:01:48 -03:00
a9525bfbc2
Update RGFW to 1.7
2025-05-29 16:03:39 -03:00
16f398b464
Update comment (gamepad axes)
2025-05-29 15:01:01 -03:00
6d5aedbd38
Add DrawEllipseV and DrawEllipseLinesV
2025-05-29 07:10:52 -04:00
913c236487
REVIEWED: MAX_GAMEPAD_AXES
2025-05-29 12:51:08 +02:00
341bfb22cc
REVIEWED: MAX_GAMEPAD_AXEX for consistency #4960
2025-05-29 12:25:00 +02:00
2afae1b3e1
Merge pull request #4962 from M374LX/rgfw-rctrl
...
RGFW backend: add missing Right Control key
2025-05-29 12:09:01 +02:00
c0cf57f8f0
RGFW backend: add missing Right Control key
2025-05-28 22:38:16 -03:00
299f5350a4
Remove unused variable
2025-05-28 19:49:57 -03:00
d7148f5f9d
REDESIGNED: Base64 encoding/decoding functions
...
Found some issues with output size when padding required, just re-implemented both functions from scratch.
2025-05-28 17:19:19 +02:00
5ddd13b775
REVIEWED: Hexadecimal formatting to be consistent
2025-05-28 17:18:02 +02:00
afb52b19a4
WARNING: REDESIGNED: EncodeDataBase64(), NULL terminated string returned
...
Note that returned output size considers the NULL terminator as an additional byte.
2025-05-22 17:06:55 +02:00
21f0fe2a73
Removed some spaces
2025-05-21 19:06:04 +02:00
e3b9dbe75b
Merge pull request #4947 from padmadevd/master
...
[rcore] Fixed bug in hovering and input for android
2025-05-19 11:59:14 +02:00
b6daa48a9c
Update rcore_android.c
...
corrected coding conventions.
2025-05-19 15:09:58 +05:30
21e711b13f
Fix typo in mesh animNormals
2025-05-18 19:35:21 -04:00
5da2d10118
Update rcore_android.c
...
Bug Fix Update
Code to Ignore Hovering Inputs Completely
2025-05-18 18:53:28 +05:30
8c99a508c6
REVIEWED: WindowSizeCallback(), GLFW
...
It is called on window minification and setting internal width/height to 0, that can break things
2025-05-14 23:49:24 +02:00
a51d334440
Merge branch 'master' of https://github.com/raysan5/raylib
2025-05-14 23:47:32 +02:00
9d4c31533d
Update rtext.c
2025-05-14 23:47:03 +02:00
ba31219141
Merge pull request #4937 from Bigfoot71/fix-gen-tangents
...
[rmodels] Fix and improve `GenMeshTangents`
2025-05-13 20:52:51 +02:00
aa684a33de
make save file callback match const correctness of calling function
2025-05-12 19:54:34 -07:00
d135eef462
fix and improve GenMeshTangents
2025-05-12 23:16:06 +02:00
f7d03efb49
REVIEWED: DecodeDataBase64(), follow convention:
...
- All `char *` refer to text strings
- All `unsigned char *` refer to generic byte arrays
2025-05-11 11:05:25 +02:00
3083f0cd43
REVIEWED: SaveFileText(), const input text
2025-05-11 11:03:49 +02:00
693c9c292a
Formatting tweaks
2025-05-10 22:45:08 +02:00
ebaa922f6b
Properly clean up the default font on unload, it may be reused if the window is created again
2025-05-08 09:57:31 -07:00
7e07278368
Update rprand.h
2025-05-08 17:06:29 +02:00