Ray
9a337f3b3b
ADDED: Support software renderer on Web, blitting framebuffer data directly to a 2d canvas
This improvement is just a prove of concept, at this moment `PLATFORM_WEB` is limited in terms of software rendering by `GLFW` that only allows creating a WebGL canvas context with `glfwCreateWindow()`.
We can skip that call but then some GLFW functionality is not available (windowing, inputs). The best solution is replacing GLFW completely by a pure Emscripten implementation for `PLATFORM_WEB`.
1 месяц назад
Ray
5025009860
REVIEWED: Make sure all variables are initialized on definition, prioritize one line per variable definitions
1 месяц назад
Ray
c96669e123
REVIEWED: Webpage reference comments starting with `REF:`, more consistent with `TODO:` and `NOTE:` comments
1 месяц назад
Ray
9c04b1de82
REVIEWED: Store canvas name id at platform initialization
Useful to support multiple canvases running different wasm instances in same webpage
1 месяц назад
Ray
b465b4e2ea
RENAMED: Variable names for consistency, `textLength` (length in bytes) vs `textSize` (measure in pixels)
1 месяц назад
Ray
2853b28d6d
REVIEWED: Avoid program crash if GPU data is tried to be loaded before `InitWindow()` #4751
Following raylib design, a warning log message is shown and program can continue execution.
Some early return checks have been added on most critical functions.
[rtext] Previous implementation checking `isGpuReady` cross-module variable is not needed any more, resulting in a more decoupled code, load failure is managed at rlgl level
1 месяц назад
Jeffery Myers
6f7cd3a9ab
[core] Camera2d comment updates ( #5401 )
* Make the comments on the camera 2d fields more clear about what space each one is in.
* rlparser: update raylib_api.* by CI
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 месяц назад
Ray
2a566544d4
ADDED: Multiply security checks to avoid crashes on wrongly provided string data #4751
- REVIEWED: Checking `NULL` input on functions getting `const char *text`, to avoid crashes
- REVIEWED: `strcpy()` usage, prioritize `strncpy()` with limited copy to buffer size
- REPLACED: `strlen()` by `TextLength()` on [rtext] module
- REVIEWED: Replaced some early returns (but keeping others, for easier code following)
1 месяц назад
Ray
bc2057345b
REVIEWED: `GetRandomValue()`, explained the new approach to get more uniform random values range
1 месяц назад
Marcos De La Torre
f2a900a60d
[rcore] Fix modulo bias in `GetRandomValue()` ( #5392 )
* Fix modulo bias in GetRandomValue(); implement rejection sampling for uniformity
* Replace do-while with for-loop in GetRandomValue rejection sampling
1 месяц назад
Ray
3adfde42f7
REVIEWED: `rlLoadTeexture()`, max mipmap levels to use #5400
1 месяц назад
Ray
91ac3cc707
FIX: `LoadRandomSequence()`, using `GetRandomValue()` #5393
1 месяц назад
Gregory Mitchell
be6007be93
fix: sha1 computation on messages longer than 31 bytes ( #5397 )
1 месяц назад
Ray
8115b7e922
Update rmodels.c
2 месяцев назад
BoneManSeth
fd8830948e
fix newer NDK version compiling errors ( #5389 )
target already gets assigned by the clang macro it points to, overwriting it causes it to target linux instead of android, making it check for usr directories instead of the NDK's directories
2 месяцев назад
Ray
f9899a7182
Reviewed code formating
2 месяцев назад
Jeffery Myers
561cc27403
[rModels] Support 16 bit vec3 values in gltf reader ( #5388 )
* Support 16 bit vec3 values coming from gltf
* Add support for 8 bit normals
2 месяцев назад
Aly
78a81bf407
Fix ToggleBorderlessFullscreen() Not Hiding Taskbar ( #5383 )
* Use glfwSetWindowMonitor instead of Pos and Size GLFW functions
* Fix window not resetting properly when toggling out of fullscreen, formatting
2 месяцев назад
Connor O'Connor
944567651c
replace sprintf with snprintf ( #5382 )
2 месяцев назад
Connor O'Connor
1bbc8682f4
Fixed some typos and mispellings ( #5381 )
Specifically "occured" -> "occurred"
2 месяцев назад
Ray
4724f7cf1b
REVIEWED: Comments for `UpdateSound()` specifying expected data format #5350
2 месяцев назад
Ray
a568506265
REVIEWED: External libraries `sdefl` and `sinfl` to address #5367
2 месяцев назад
Ray
ebce9fa97a
Update rcore_memory.c
2 месяцев назад
Ray
18e1ec504f
Updated example
2 месяцев назад
Ray
8f3cabcf76
Update rcore.c
2 месяцев назад
Ray
47a8b554bc
**NEW**: `PLATFORM_MEMORY` backend
New platform backend for software rendering directly on RAM memory buffer
2 месяцев назад
Ray
bd36610f91
Some formatting
2 месяцев назад
Ray
7e3d6cbfa8
Update rcore.c
2 месяцев назад
Ray
17dc2bb474
Update rcore.c
2 месяцев назад
Ray
aaa893f668
Update rcore.c
2 месяцев назад
Ray
e1b9857b14
Some TODOs and format reviews
2 месяцев назад
Ray
f1719480e0
Minor format tweaks
2 месяцев назад
Ray
6c3ef8d9b4
Remove trailing spaces
2 месяцев назад
Jeffery Myers
90af210712
include malloc.h so the win32 platform can build in MSVC ( #5365 )
2 месяцев назад
Ray
ba65bd7f99
WARNING: BREAKING: Redesigned `SetSoundPan()` and `SetMusicPan()` #5350
Now it goes from -1.0 (full left) to 1.0 (full right) being 0.0 center
2 месяцев назад
Ray
d26435703f
Update rcore_desktop_win32.c
2 месяцев назад
Ray
265fa7833c
Update rtext.c
2 месяцев назад
Ray
f21c1cc6ae
Update rtext.c
2 месяцев назад
Ray
ec828071ef
Update rtext.c
2 месяцев назад
Adi Čaušević
e2233acdb0
feat: Optimize ImageClearBackground and ImageDrawRectangleRec with doubling strategy ( #5363 )
2 месяцев назад
Robin ❤️
3f92c396a0
Fixed typo ( #5364 )
2 месяцев назад
Ray
57e22d5fa0
Update rtext.c
2 месяцев назад
Ray
86e00bde65
Update rcore_desktop_sdl.c
2 месяцев назад
MikiZX1
b18f547d8f
Update rcore_desktop_sdl.c, fix crash when strncpy tries to copy using NULL pointer ( #5359 )
When SDL_GameControllerNameForIndex returns null, the app crashes. This was addressed earlier in PR#4859 though the fix submitted on PR #4859 was only fixing the crashing and not addressing the root cause.
2 месяцев назад
Serhii Zasenko
be9a24e68c
Fix controller not available right after win init ( #5358 )
- Fix IsGamepadAvailable() returns false for an available controller immediately after window initialization
2 месяцев назад
Ray
4dbe04b250
Update config.h
2 месяцев назад
Ray
8ae2c9cf5f
FIX: `LoadFontDataBDF()` #5346
2 месяцев назад
Ray
7f82da0031
Update rlsw.h
2 месяцев назад
Ray
fcaea5b1a1
Remove trailing spaces
2 месяцев назад
Ray
4e8b087ffe
REVIEWED: `ComputeSHA256()`
2 месяцев назад