| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-02-04 | Merge pull request #460 from raysan5/develop1.9.4-dev | Ray | |
| Integrate develop branch | |||
| 2018-02-04 | Merge branch 'develop' of https://github.com/raysan5/raylib into develop | raysan5 | |
| 2018-02-04 | Incremeted version to align with CMake | raysan5 | |
| 2018-02-04 | Merge pull request #459 from a3f/develop | Ray | |
| Bump version to 1.9.4 | |||
| 2018-02-04 | Bump version to 1.9.4 | Ahmad Fatoum | |
| 2018-02-04 | Travis CI: Don't use external GLFW | Ahmad Fatoum | |
| While nice to test, this would mean that the tagged release will depend on GLFW as well… Therefore disable it for now. | |||
| 2018-02-04 | Merge pull request #458 from raysan5/develop | Ray | |
| Integrate develop branch into master | |||
| 2018-02-04 | Updated raylib version | raysan5 | |
| Note that this version is under development and could be buggy on some platforms... | |||
| 2018-02-04 | Security check in case window initialization fails | raysan5 | |
| 2018-02-04 | Merge branch 'develop' of https://github.com/raysan5/raylib into develop | raysan5 | |
| 2018-02-04 | Reviewed window initialization | raysan5 | |
| In case graphic device could not be created it returns false instead of failing with an error tracelog (and consequently closing the program). Window initialization success could be checked with new function IsWindowReady() | |||
| 2018-02-04 | CMake: Rename WITH_SYSTEM_GLFW to USE_EXTERNAL_GLFW | Ahmad Fatoum | |
| for consistency with Makefile. Requested by @raysan5 in #453. | |||
| 2018-02-04 | Merge pull request #456 from a3f/develop | Ray | |
| Return false from InitWindow if glfwInit or glfwCreateWindow fails -TO REVIEW AS DISCUSSED- | |||
| 2018-02-03 | Return false from InitWindow if glfwInit or glfwCreateWindow fails | Ahmad Fatoum | |
| You can't do much with raylib if glfwInit or glfwCreateWindow fails, currently it just exits by means of TraceLog(LOG_ERROR. User code, however, might want to fall back to a text-only UI or display a warning if raylib can't be used. | |||
| 2018-02-03 | exit(3), don't crash, when glfwCreateWindow fails | Ahmad Fatoum | |
| glfwSetWindowPos was called on a NULL window, triggering an assert inside GLFW. Check for failure and exit cleanly by means of TraceLog(LOG_ERROR instead. | |||
| 2018-02-03 | CMake: Fix typo in GLFW detection | Ahmad Fatoum | |
| Let it be noted I utterly dislike their syntax. | |||
| 2018-02-03 | Update README.md | Ray | |
| 2018-02-03 | Removed external dependencies | Ray | |
| 2018-02-03 | CMake: Add tristate option for using system GLFW (#455) | Ahmad Fatoum | |
| -DWITH_SYSTEM_GLFW=ON: Link against system glfw and fail otherwise -DWITH_SYSTEM_GLFW=OFF: Use embedded rglfw.c -DWITH_SYSTEM_GLFW=IF_POSSIBLE: Probe for system glfw but fallback to rglfw if unavailable Also change Linux 64-bit CI build to install system glfw and use it, so this doesn't bitrot. Addresses #453. | |||
| 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 | |
