| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-02-03 | CMake: Fix typo in MACOS_FATLIB | Ahmad Fatoum | |
| 2018-02-02 | Added function DrawRectangleLinesEx() | Ray San | |
| 2018-01-31 | Corrected typo | Ray | |
| 2018-01-31 | Added missing keys definitions | Ray | |
| 2018-01-29 | Do not ignore Makefiles! | Ray | |
| 2018-01-29 | Upload GGJ18 game: transmission mission | Ray | |
| Game developed in the GGJ18, it has some bugs and ending screen is incomplete... I'll try to keep working a bit more on it. | |||
| 2018-01-28 | Corrected several issues... | 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-27 | CMake: Add missing 0 to minimum version | Ahmad Fatoum | |
| Removed by mistake. | |||
| 2018-01-27 | CMake: Search dependencies and build pkg-config's Libs.private with it | Ahmad Fatoum | |
| 2018-01-27 | CMake: remove OpenAL dependency | Ahmad Fatoum | |
| 2018-01-27 | Travis CI: Don't set CFLAGS=-m64 for macOS build | Ahmad Fatoum | |
| 2018-01-26 | Drop libglew-dev as prereq for Travis build | Ahmad Fatoum | |
| Noted by @eserte in athreef/Alien-raylib#2. Thanks! | |||
| 2018-01-26 | Clear fbo for drawing | Ray | |
| Just in case ClearBackground() is not used after BeginTextureMode(), it clears fbo to color defined by previous ClearBackground() | |||
| 2018-01-26 | Merge pull request #440 from a3f/develop | Ray | |
| Make function calls without prior declaration an error | |||
| 2018-01-25 | #include header for time() on Windows | Ahmad Fatoum | |
| 2018-01-25 | #include header for glInsertEventMarkerEXT on macOS | Ahmad Fatoum | |
| 2018-01-25 | Make function calls without prior declaration an error | Ahmad Fatoum | |
| which is the default behavior on C99 and up. | |||
| 2018-01-25 | Support DEBUG library building | Ray | |
| 2018-01-23 | Review mipmaps generation issue | Ray | |
| When changing image format, mipmaps are lost and regenerated from scratch | |||
| 2018-01-22 | Improved pixel formats support | Ray | |
| Review rlLoadTexture() function to make it simpler, now OpenGL texture glInternalFormat, glFormat and glType are retrieved with new function GetGlFormats() | |||
| 2018-01-22 | Review VS2017 projects configurations | Ray | |
| 2018-01-19 | Added VS2017 UWP project | Ray | |
| Reviewed VS2015 UWP project | |||
| 2018-01-19 | Reviewed UWP branch integration | Ray | |
| 2018-01-19 | Merge pull request #434 from raysan5/testing_uwp | Ray | |
| Integration of UWP support | |||
| 2018-01-19 | Merge branch 'develop' into testing_uwp | Ray | |
| 2018-01-18 | Merge pull request #433 from a3f/develop | Ray | |
| GCC/Clang: Treat void pointer arithmetic as error | |||
| 2018-01-18 | GCC/Clang: Treat void pointer arithmetic as error | Ahmad Fatoum | |
| As an extension, GNU C treats sizeof(void) as 1. MSVC doesn't. Make it an error on GCC/Clang to avoid accidental MSVC breakage. | |||
| 2018-01-18 | MSVC: Fix void pointer arithmetic error | Ahmad Fatoum | |
| GNU C allows it as a compiler extension, but MSVC doesn't. | |||
| 2018-01-18 | Added function: ImageMipmaps() | Ray | |
| 2018-01-17 | CMake: build shape and texture examples (#432) | kai | |
| 2018-01-17 | Reviewed VS2015 projects | Ray | |
| - Support OpenGL 1.1 if selected macro - Corrected MSVC compiler issues with (void *) data - Removed raylib.dll project - Created DEBUG_DLL and RELEASE_DLL configurations | |||
| 2018-01-17 | Reviewed function GenImagePerlinNoise() | Ray | |
| Added support for noise image offset | |||
| 2018-01-16 | Redesigned rlLoadTexture() | Ray | |
| - Added support for mipmap levels loading - Removed internal function LoadTextureCompressed(), not required any more... | |||
| 2018-01-15 | Review releases, removed external dependencies | - | |
| Not required any more! | |||
| 2018-01-15 | Code tweak while using OpenAL backend | - | |
| 2018-01-15 | Reviewed Makefiles... | - | |
| - Renamed VERSION to RAYLIB_VERSION - Renamed API_VERSION to RAYLIB_API_VERSION - Renamed RAYLIB_RELEASE to RAYLIB_RELEASE_PATH - Support Web Assembly compilation on PLATFORM_WEB | |||
| 2018-01-15 | Support canvas scaling with window | - | |
| 2018-01-15 | Review Makefiles and templates | - | |
| 2018-01-13 | Merge pull request #428 from SamNChiet/testing_uwp | Ray | |
| Add mouse input and revert keyboard to callback model | |||
| 2018-01-12 | Add mouse input and revert keyboard to callback model | Sam C | |
| Mouse input is implemented, with all bells-and-whistles. This includes cursor locking and scroll wheel support. Keyboard input is reverted to a callback model to better reflect the existing architecture in "core.c" | |||
| 2018-01-11 | Added new function: ImageAlphaCrop() | Ray | |
| 2018-01-08 | Corrected issue with matrices | Ray | |
| Matrix stack system should be reviewed but, in the meantime, currentMatrix should be reseted in order of 3d to work | |||
| 2018-01-07 | Use busy wait loop | Ray | |
| If not using busy wait loop, linkage with WINMM in Windows platform is required | |||
| 2018-01-07 | Launch draw call if buffer limits reached | Ray | |
| Note that this solution is a temporal patch, not properly tested and prone to fail, specially if matrix are pushed into the stack... | |||
| 2018-01-07 | Added new image functions | raysan5 | |
| - Added: ImageAlphaClear() - Added: ImageAlphaPremultiply() - Reorganized some functions | |||
| 2018-01-06 | Review float pixel format textures support | raysan5 | |
| 2018-01-06 | Improved pixel formats support | raysan5 | |
| - Renamed enum TextureFormat to PixelFormat for consistency - Added support for pixel format UNCOMPRESSED_R32 - Using GetPixelDataSize() where required | |||
| 2018-01-06 | Added function declaration | raysan5 | |
| 2018-01-06 | Added function: GetPixelDataSize() | raysan5 | |
| Just found I need that function... | |||
