lukasx999
4fac1b8008
added c++20 formatters
1 week ago
Ray
dedf382f64
Merge pull request #5053 from didas72/master
[rcore][linux] Fixes GetWindowHandle returning a bad handle under Linux X11
1 week ago
Didas72
36364192d5
Fixes GetWindowHandle returning a bad handle under Linux X11
1 week ago
Ray
9b6c09c32f
Merge pull request #5049 from wwderw/master
[build] Update Makefile
1 week ago
wwderw
0b125a5fd7
Update Makefile
Remove .bc file removal from clean shell for windows configuration.
1 week ago
Ray
0b7dda8ab1
Merge pull request #5050 from katanya04/master
Update font load message
1 week ago
Catania
3d93b30262
Update font load message
1 week ago
Ray
78a06990c7
Merge pull request #5041 from PanicTitan/master
[example][web] Fix core_custom_frame_control.c to properly register inputs on web platform
1 week ago
Ray
82b80a6998
Review formatting, avoid variable
1 week ago
Ray
71b302846a
Review formatting, avoid variable
1 week ago
Ray
8823aba9df
Update rprand.h
1 week ago
Ray
6b9a685bae
Merge pull request #5048 from veins1/patch-4
[raudio] Fix: music stopping early. Fix: GetMusicTimePlayed for short music
1 week ago
Ray
14582a9f06
Merge pull request #5047 from RomainPlmg/#5009-fix-colorreplace-alpha
[rtextures] Fix ImageColorReplace() alpha issue replacement
1 week ago
wwderw
093e5200d0
Update Makefile
Clean up library build for the web
1 week ago
veins1
0405de794a
Fix for music stopping too early
1 week ago
veins1
d03ac97eff
GetMusicTimePlayed fix for music shorter than buffer size
1 week ago
Romain Plumaugat
34af70866c
[rtextures] Fix ImageColorReplace() alpha issue #5009
1 week ago
Ray
e00c5eb8b1
Merge pull request #5043 from vinnyhorgan/master
Fix warning log macro in rlgl
1 week ago
Ray
cbea2ff502
Merge pull request #5046 from maiconpintoabreu/updatestream-music
[raudio] Prevent UpdateMusicStream to run without music playing
1 week ago
Maicon Santana
3320a2c837
Fix to prevent UpdateMusicStream to run without music playing
1 week ago
Ray
e7c043529c
Merge pull request #5044 from backspaceoverload/fix-HalfToFloat
[rtextures] Fix HalfToFloat Mantissa hex value
1 week ago
backspaceoverload
44ebf32389
Fix HalfToFloat Mantissa hex value
1 week ago
Daniel Vincent Horgan
901afadbf1
fix warning log macro in rlgl
2 weeks ago
Ray
f34e240688
Merge pull request #5042 from Sir-Irk/ImageDrawLineEx_fix
[rtextures] Fix `ImageDrawLineEx()` line thickness
2 weeks ago
Jeremy Montgomery
fce3102f1c
Remove excess comments
2 weeks ago
sir-irk
9f03d7c426
fixing comments
2 weeks ago
sir-irk
0c69c43c3a
fix ImageDrawLineEx to be able to draw even numbered thicknesses
2 weeks ago
PanicTitan
9e908e4a76
Update core_custom_frame_control.c to work properly on web
2 weeks ago
Ray
20a07a65d7
Merge pull request #5037 from garrisonhh/fix-gaussian-blur
[rtextures] fix integer overflow in cast for `ImageBlurGaussian`
2 weeks ago
garrisonhh
8dbacafbe6
fix overflow in cast for ImageBlurGaussian
2 weeks ago
Ray
55a5674714
Merge pull request #5036 from sleeptightAnsiC/update_glfw_mappings_h
[glfw] update mappings.h using GenerateMappings.cmake
2 weeks ago
sleeptightAnsiC
930890555c
[glfw] update mappings.h using GenerateMappings.cmake
I did this with the intention of fixing
https://github.com/raysan5/raylib/issues/5027
but it's hard to tell if it will help in that case or not.
Anyway, bumping the header with mappings should be done once in a while.
I haven't found any Raylib script for doing this, so here's how I did it
step-by-step with CMake rule provided by GLFW (I'm on Linux, but this
should be similar on any other POSIX system):
```sh
$ git clone https://github.com/raysan5/raylib.git
$ cd raylib/src/external/glfw/
$ cmake -B ./build -DGLFW_BUILD_EXAMPLES=OFF -DGLFW_BUILD_TESTS=OFF -DGLFW_BUILD_DOCS=OFF -G "Unix Makefiles"
$ make -C ./build update_mappings
$ rm -fr ./build
```
then I checked, if any mappings were deleted (without updating) with
following shell one-liner:
```sh
# you must be at 'raylib/src/external/glfw/' when executing this
$ for i in $(git diff ./src/mappings.h | sed -n -e 's/^-"\([0-9a-z]*\),.*$/\1/p'); do grep <./src/mappings.h "$i" > /dev/null || echo "$i"; done;
```
which gave me the following IDs:
```txt
0300000066f700000500000000000000
030000000d0f00001600000000007803
03000000efbe0000edfe000000000000
03000000786901006e70000000000000
050000005e040000e002000030110000
03000000790000000600000010010000
030000000d0f00000d00000000010000
030000000d0f0000d800000072056800
03000000c0160000dc27000001010000
030000008916000000fd000024010000
```
I have checked all those IDs with `git log -p` against
https://github.com/mdqinc/SDL_GameControllerDB
and it seems that all of them were deleted by upstream (I was afraid that
maybe some mappings were added manually by a Raylib contributor and then
overwritten by my patch, but they weren't; All good!)
2 weeks ago
Ray
defbeee1a7
Merge pull request #5020 from Emil2010/master
update dr_libs
2 weeks ago
Ray
d972582bc7
Merge pull request #5025 from zedeckj/master
Fixed typo in example
2 weeks ago
Ray
5957564983
Merge pull request #5026 from jonathandw743/sdlfix
fixed compile error for PLATFORM sdl
2 weeks ago
Ray
eaea8e0b0a
Merge pull request #5033 from wwderw/master
Update raudio.c
2 weeks ago
wwderw
8ef51850bf
Update raudio.c
Allow for the use of raudio stand alone
2 weeks ago
Ray
a92f67bf34
Merge pull request #5031 from AmityWilder/safety-comments
Safety Comments for Sound/Texture Update Functions
2 weeks ago
Amy Wilder
205b6a0926
Merge branch 'raysan5:master' into safety-comments
2 weeks ago
github-actions[bot]
9f6d37ecb4
Update raylib_api.* by CI
2 weeks ago
Amy Wilder
d4f09984ac
Add safety notes to 'Update_' functions
2 weeks ago
jonathandw743
79c29cbe24
fixed compile error for PLATFORM sdl
3 weeks ago
Jordan Zedeck
e91a3697ff
Fixed typo
3 weeks ago
EmilSylveon
910f4083e1
update dr_libs
3 weeks ago
Ray
7f8dfc6c69
Merge pull request #5018 from maiconpintoabreu/fix-zig-wasm-win-mac
[Zig] Fix issue on zig build Emscripten run if no emsdk installed
3 weeks ago
Maicon
f1600a0c7e
Fix issue on zig build emscripten run if the user has not installed emsdk
3 weeks ago
Ray
46f01e315d
Merge pull request #5013 from maiconpintoabreu/zig-examples
[zig] Add run examples using zig and emscripten for web
3 weeks ago
Ray
2e74133a62
Merge pull request #5014 from fosskers/colin/cl-binding
docs: mention another Common Lisp binding
3 weeks ago
Ray
7f32b9a964
Merge pull request #5015 from Sir-Irk/gltf_model_fix
[rmodels] Fixing offset for processing tangents for GLTF/GLB loading
3 weeks ago
Ray
8cf932c822
Merge pull request #5016 from Sir-Irk/fix_pbr_example_tangents
[example] Fix pbr example shaders to use vec4 for vertexTangent
3 weeks ago