Ray
2c0071c851
Reviewed issue with negative key #2619
2 vuotta sitten
veins1
4b2357dc34
Can't alt-tab out of fullscreen window ( #2618 )
2 vuotta sitten
Ray
14990209ef
Added comments
2 vuotta sitten
veins1
d70e5cd26b
Small simplifications ( #2615 )
2 vuotta sitten
veins1
82b76149da
GetMusicTimePlayed bug fix ( #2614 )
GetMusicTimePlayed() was calculated using buffered frames, not played frames.
For example: calling LoadMusicStream->UpdateMusicStream->GetMusicTimePlayed would return non-zero value, even though no music was playing.
2 vuotta sitten
Ray
72b2d1335a
Update cgltf.h
2 vuotta sitten
Ray
d791c1cf64
Update miniaudio.h
2 vuotta sitten
Ray
94165a40b9
REMOVED: rmem library from raylib sources
Moved to own repo: https://github.com/raylib-extras/rmem
2 vuotta sitten
Ray
dd455c626e
Update rlgl.h
2 vuotta sitten
Ray
0ce8a8f360
Remove `easings.h` from raylib/src, moved to examples
2 vuotta sitten
Ray
df5514088e
REVIEWED: `GetMouseWheelMove()`, avoid move scaling on `PLATFORM_WEB`
Tested with latest emscripten 3.1.18
2 vuotta sitten
Ray
312fa64b88
Updated raylib resource data (32bit)
2 vuotta sitten
Ray
2a2c9e4da8
minor tweaks
2 vuotta sitten
Ray
d68ddda766
Added note for multi-threading web compilation
2 vuotta sitten
Ray
4492e64cb5
Update version
2 vuotta sitten
Ray
ed7548051b
Update version to 4.2
2 vuotta sitten
Ray
eb8d14e5b2
Update version to raylib 4.2
2 vuotta sitten
Ray
fd191a32ea
Remove trailing spaces
2 vuotta sitten
veins1
a6b3c8aa1e
Music doesn't stop looping fix ( #2605 )
This PR fixes a bug when music.looping is set to false but the music continues looping.
Also using proper functions to seek to start of an audio file.
Removed old comment.
2 vuotta sitten
Ray
2e5fc3d0c2
Avoid cleaning the front buffer to a specific color!
ISSUE: Front buffer and backbuffer have different clear colors, if no `ClearBackground()` is called by user, there is screen flickering on buffers swap.
It's up to the user to call `ClearBackground()` if desired
2 vuotta sitten
Ray
7853155f99
REMOVED: Config option: `SUPPORT_MOUSE_CURSOR_POINT`
2 vuotta sitten
BlueStag
f31e4ebb3d
Use American spelling of colourSpace ( #2604 )
2 vuotta sitten
veins1
0ef3e4c4d5
Audio looping fix ( #2579 )
* WAVs looping fix. But broke other formats looping
* Fix audio looping issue
* Follow raylib formatting
* Cast void* to char* to make MSVC compiler happy
Co-authored-by: Ray <raysan5@gmail.com>
2 vuotta sitten
Ray
bb6b43b7cb
REVIEWED: `GenImageFontAtlas()` #2556
Just reviewed font atlas size estimation, now it considers `fontSize` instead of `chars[i].image.height`, increasing considerably the atlas size estimation.
2 vuotta sitten
Nikolay Krasheninnikov
52345fd883
[raymath] Rotation functions returns clockwise rotation matrix, #2595 ( #2599 )
Co-authored-by: Nikolai Krasheninnikov <nikolai.krasheninnikov@kronshtadt.ru>
2 vuotta sitten
Ray
241d6526b0
Some camera improvements #2563
Reviewed some camera functionality:
- Reviewed camera swinging (up-down movement)
- Reviewed camera tilting (left-right movement)
- Make movement independent of frame-rate
- removed unneeded variables
NOTE: Camera rotation has some speed issues on first person when fixed 60 fps are used: it moves too fast. Independent framerate movement is not properly implemented.
2 vuotta sitten
Ray
7b05444af8
Review comments and parameter names
2 vuotta sitten
Piotr Wierciński
024a803665
rtextures: Improve numerical stability of float multiplication ( #2596 )
Dimensions of Rectangle should be casted to int before multiplication,
otherwise there is a risk for underallocation/overallocation of memory.
2 vuotta sitten
Piotr Wierciński
5a2f25cc7c
rtextures: Fix ImageFromImage crash ( #2594 )
Height of the rectangle can be float, which
may lead to doing extra iteration of loop and
writing out of bounds.
2 vuotta sitten
Crydsch
00c7509454
add Vector3RotateByAxisAngle ( #2590 )
2 vuotta sitten
hitomi kirigri
64710e6030
fix QuaternionFromMatrix & QuaternionEquals ( #2591 )
Co-authored-by: kirigiri hitomi <chenjw@hiscene.com>
2 vuotta sitten
Ray
d78177d246
Update year
2 vuotta sitten
Ray
39d9d1da42
Update config.h
2 vuotta sitten
Julianiolo
6ed1ce0082
fixed build for cygwin ( #2588 )
2 vuotta sitten
George Linkovsky
b40696eab6
Fix Vector3ClampValue and Vector2ClampValue ( #2585 )
Co-authored-by: Timofffee <timofffee@gmail.com>
2 vuotta sitten
Jeffery Myers
e9029d3d00
[CORE] Fix Warnings ( #2582 )
* Fix raymath warning with floor to floorf
* signed unsigned missmatches
2 vuotta sitten
Ray
49a534b5d4
Removed raudio.h from public header
2 vuotta sitten
Ray
cccea34c6f
Update raudio.c
2 vuotta sitten
Ray
8aa105fd5b
WARNING: REMOVED: raudio_standalone example
Moved to raudio library repo: https://github.com/raysan5/raudio
2 vuotta sitten
Ray
6c2c176a99
Added note
2 vuotta sitten
Ray
3ebfee5dbc
REVIEWED: `UpdateMusicStream()` #2228
Trying to implement proper looping, independently of frame rate.
2 vuotta sitten
Ray
0379b94b7a
Minor tweaks
2 vuotta sitten
Ray
b92573e711
Update raudio.c
2 vuotta sitten
Ray
2245500245
Added comment about buffer refill issue on looping #2228
2 vuotta sitten
Ray
066bd5be87
Reviewed formating
2 vuotta sitten
Ray
29a0f60778
REVIEWED: `ImageResize()` #2572
2 vuotta sitten
Ray
05dc300296
Remove unneded TABS
2 vuotta sitten
Audi Nugraha
d1aabb3957
Allow DLL creation using TCC ( #2569 )
* Fix Undefined Symbol `_ftelli64`
* Add files via upload
* Update raylib.h
* Update raylib.h
2 vuotta sitten
Richard Smith
f7e1550eea
Fix fat universal (arm64 + x86_64) macos Github Actions build ( #2567 )
* test if clang supports multiple targets
* didnt work, so trying lipo to join separate targets together
* add CUSTOM_LDFLAGS to try to fix arm64 mac dynamic build
* fix sym links
* try again to fix sym links
* auto extract raylib version numbers from makefile
* fix macos missing gnu grep
* dont use custom name for raylib dlls
3 vuotta sitten
Ray
7fb7591e4f
Update raylib.h
3 vuotta sitten