| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-07-16 | Updated to latest mini_al dev | Ray | |
| 2018-07-11 | Updated mini_al to latest dev version | Ray | |
| Corrects issue with audio on RPI | |||
| 2018-07-07 | Update mini_al with a fix for macOS. | David Reid | |
| 2018-07-06 | Add null statement after goto label to pacify CI | Ahmad Fatoum | |
| Fixes: #568 | |||
| 2018-07-05 | Update mini_al to version 0.8. | David Reid | |
| 2018-07-05 | Update external audio libraries. | David Reid | |
| 2018-07-05 | Merge branch 'master' of https://github.com/raysan5/raylib into dr/mini_al | David Reid | |
| 2018-07-03 | CMake: Reuse libraries found by glfw CMake config | Ahmad Fatoum | |
| if (${PLATFORM} MATCHES "Desktop") target_link_libraries(${RAYLIB}_shared glfw ${GLFW_LIBRARIES}) was never true because PLATFORM STREQUAL "PLATFORM_DESKTOP"... This fixes #551 and makes the changes suggested in #552 (commited as 965cc8ab) unnecessary. | |||
| 2018-06-12 | Corrected breaking build | Ray San | |
| 2018-06-02 | Update GLFW to latest dev version (master branch) | Ray | |
| 2018-05-28 | fabsf() not working with TCC | Ray | |
| Replaced by fabs() that seem to work ok | |||
| 2018-05-21 | Update mini_al. | David Reid | |
| 2018-05-21 | Merge branch 'master' of https://github.com/raysan5/raylib into dr/mini_al | David Reid | |
| 2018-05-12 | CMake: (Properly) build glfw separately with CMake | Ahmad Fatoum | |
| This reverts commit 2d6fb5c628068757387525e190c3afdbe33ae9c6, and adds a fix for Alien::raylib's test failures. The tests failed because the resulting static library didn't reexport GLFW symbols. As a fix, we now have GLFW create a CMake "object library" target that we can link with both the static and shared raylib. This is arguably ugly... Proper fix would probably be a GLFW upstream object library target. Closes #536. | |||
| 2018-05-10 | Add GLFW source tree to src/external | Ahmad Fatoum | |
| We need the CMake stuff for wayland configuration. Otherwise, we would have to replicate that ourselves. This is the full 7ef34eb06de54dd9186d3d21a401b2ef819b59e7 tree except for tests/ examples/ and docs/ | |||
| 2018-05-04 | BREAKING CHANGE: Renamed SpriteFont type to Font | Ray San | |
| - Preparing MP3 files support - Jumped version to raylib 2.0-dev (too many breaking changes...) | |||
| 2018-04-22 | Update mini_al. | David Reid | |
| 2018-04-21 | Update mini_al. | David Reid | |
| 2018-04-21 | Update mini_al. | David Reid | |
| 2018-04-21 | Update external audio libraries. | David Reid | |
| 2018-04-11 | mini_al: Use WinAPI interlocked ops with tcc | Ahmad Fatoum | |
| Seems tcc doesn't provide __sync_*. See #435. | |||
| 2018-04-02 | Merge pull request #504 from Martinfx/master | Ray | |
| Fix potential bugs from static analysis | |||
| 2018-04-02 | Remove dead assignment | [email protected] | |
| 2018-04-02 | Fix value stored to 'num_channels' is never read | [email protected] | |
| 2018-03-20 | Fix an infinite loop in ALSA backend of mini_al. | David Reid | |
| 2018-03-18 | Fix a buffer overflow in the OSS/BSD backend. | David Reid | |
| 2018-03-03 | Updated GLFW library to latest version | raysan5 | |
| 2018-02-26 | Fix two memory leaks in jar_xm.h | Ahmad Fatoum | |
| Found by LeakSanitizer in #494. | |||
| 2018-02-24 | jar_xm: Workaround for unaligned pointer accesses | Ahmad Fatoum | |
| jar_xm.h does some shady pointer casts leading to unaligned accesses and breaking strict aliasing. x86 has special circuitry for doing unaligned accesses, but on other architectures, it may trap and require kernel fix-up or crash outright. With this patch, one obstacle in porting raylib to the GameBoy Advance has been removed. Go for it ;-) To avoid having to rewrite that `mempool' code, insert padding before structs and instruct the compiler (GCC, most importantly), to be gentle when optimizing. This fixes #490 (Unless we got ourselves 256-bit pointers, if so, hello future!) | |||
| 2018-02-20 | Reviewed timming system for macOS | Ray | |
| Apparently, before macOS Sierra version, clock_gettime was not available, using MATCH timming system instead | |||
| 2018-02-11 | mini_al: Support {Net,Open}BSD OSS | Ahmad Fatoum | |
| Fixes this build failure: http://www.cpantesters.org/cpan/report/a069fade-0e1f-11e8-a1cf-bb670eaac09d | |||
| 2018-02-09 | Updated external libraries | Ray | |
| 2018-01-27 | GLFW: Fix build error on Linux < v2.6.39 | Ahmad Fatoum | |
| Cherry-pick from upstream glfw/glfw#1196 Found in CPANtesters test of Alien::raylib: http://www.cpantesters.org/cpan/report/d956d128-0339-11e8-b0d1-b6c4abd39192 | |||
| 2018-01-19 | Reviewed UWP branch integration | Ray | |
| 2018-01-19 | Merge branch 'develop' into testing_uwp | Ray | |
| 2017-12-15 | Updated mini_al to latest version | Ray San | |
| 2017-12-14 | added debug-event-markers for opengl so that you're able to set markers for ↵ | user | |
| renderdoc or other gpu debuggers what your program is currently doing | |||
| 2017-12-11 | Remove rres support | Ray | |
| Let the user choose if using rres external library | |||
| 2017-12-10 | Fix CI builds after mini_al changes | Ahmad Fatoum | |
| 2017-12-09 | Added Wayland support | raysan5 | |
| Updated to latest GLFW library and working on Wayland support, still looking how to implement it on raylib because it just exposes PLATFORM_DESKTOP and defaults to X11 windowing system on Linux... | |||
| 2017-12-05 | Removed OpenAL Soft dependency on building | Ray San | |
| OpenAL Soft backend is still available in audio module, I'm thinking if exposing it for building in some way or just left it there for advance users to switch to it manually in case of necessity... | |||
| 2017-12-05 | Updated external libraries dependencies | Ray San | |
| Added dr_wav for a future use | |||
| 2017-12-05 | Merge pull request #413 from mackron/dr/mini_al | Ray | |
| mini_al integration | |||
| 2017-12-05 | Update mini_al. | David Reid | |
| 2017-12-03 | Potential fixes for Raspberry Pi. | David Reid | |
| 2017-11-24 | Potential fixes for audio on RPI and Emscripten builds. | David Reid | |
| 2017-11-22 | Removed useless file | Ray San | |
| 2017-11-21 | Update mini_al with fixes for OpenSL and SDL backends. | David Reid | |
| 2017-11-20 | Update mini_al with a potential fix for HTML5. | David Reid | |
| 2017-11-19 | Log the name of the playback device. | David Reid | |
