| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-08-20 | Review compilation parameter for objective C code on GLFW | raysan5 | |
| 2020-08-20 | Minor tweak for consistency | raysan5 | |
| 2020-08-20 | Avoid architecture selection on gcc, use correct gcc version instead | raysan5 | |
| Review raylib resource file for DLL compilation | |||
| 2020-08-19 | Support externally provided library name | raysan5 | |
| It can be useful in some cases qhen compiling for multiple architectures | |||
| 2020-08-19 | Review Android arch names to lowercase | raysan5 | |
| 2020-08-19 | Trying to configure android_native_app_glue target compilation | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Trying to automate Android building... | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Added resource file for DLL compilation info | raysan5 | |
| 2020-08-19 | Add LDFLAGS when required | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-17 | Support multiple build architectures (x86, x64) | raysan5 | |
| 2020-08-17 | Improved Makefile clean on Windows | raysan5 | |
| 2020-08-17 | Update Makefile | raysan5 | |
| 2020-08-17 | Update Makefile | raysan5 | |
| 2020-08-16 | RENAMED: FormatText() -> TextFormat() | raysan5 | |
| This function was renamed for consistency in raylib 3.0, just unified all examples to use TextFormat() instead of FormatText() | |||
| 2020-08-15 | Review issue with .fnt -> .png path #1351 | Ray | |
| When .fnt file is in the .exe path, image path was wrongly calculated | |||
| 2020-08-11 | Support mulstiple WAV sampleSize for MusicStream #1340 | raysan5 | |
| 24bit per sample is not supported internally and automatically converted 16bit | |||
| 2020-08-08 | CMake: don't use raylib_static name for MinGW on Windows | Ahmad Fatoum | |
| There are no *.lib files that could overwrite each other when building both static and shared versions of raylib at once. So just use the normal library name without _static suffix. | |||
| 2020-08-06 | Reset close status for next frame #1339 | raysan5 | |
| 2020-08-02 | Update Makefile for web (#1332) | Rfaile313 | |
| When you install emsdk out of the box, the directory is no longer `$(EMSDK_PATH)/python/33.7.4_64bit` but rather `$(EMSDK_PATH)/python/3.7.4-pywin32_64bit` noting the `3.7.4-pywin32_64bit` change on the last file. Thus, without adjusting this in the raylib Makefile it will throw an error: ``` PS C:\raylib\raylib\src> make PLATFORM=PLATFORM_WEB -B emcc -c core.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=gnu99 -Os -s USE_GLFW=3 -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2 '"python"' is not recognized as an internal or external command, operable program or batch file. ``` However, changing this line in the Makefile compiles raylib for web as expected `"raylib library generated (libraylib.bc)!"` | |||
| 2020-07-31 | LoadSound(): Use memory loading (WAV, OGG, MP3, FLAC) #1312 | raysan5 | |
| 2020-07-30 | rlCheckErrors (#1321) | seanpringle | |
| * rlglCheckErrors * rlglCheckErrors LOG_WARNING * rename to rlCheckErrors; improve messages; revert core.c | |||
| 2020-07-28 | Support pthreads on PLATFORM_WEB compilation | raysan5 | |
| 2020-07-28 | Corrected issue with framebuffer size storage #1298 | raysan5 | |
| 2020-07-24 | Consider empty title for window #1323 | Ray | |
| 2020-07-22 | DrawTriangleFan(): Add a comment about vertex order #1316 | Ray | |
| 2020-07-20 | [wip] MeshNormalsSmooth() (#1317) | seanpringle | |
| * MeshSmoothNormals() by average * wrong comment * spelling * use correct function naming convention | |||
| 2020-07-17 | Find a better mechanism to avoid FBO on OpenGL 2.1 if required #1290 | raysan5 | |
| 2020-07-17 | Issue with render size assignment on RPI/Android #1314 | raysan5 | |
| 2020-07-17 | Reviewed comment in LoadIQM() #1315 | raysan5 | |
| 2020-07-15 | clamp ray hit y position to ground plane height (#1311) | seanpringle | |
| 2020-07-14 | fix emcc warning (-Wparentheses-equality) (#1310) | Random | |
| 2020-07-14 | Update Makefile Android | raysan5 | |
| 2020-07-14 | Update Makefile emsdk paths | raysan5 | |
| 2020-07-14 | Update miniaudio to v0.10.14 | raysan5 | |
| 2020-07-14 | scale perspective top calc for near culing plane (#1309) | seanpringle | |
| 2020-07-13 | Remove conditional __EMSCRIPTEN__ | raysan5 | |
| Not required anymore | |||
| 2020-07-13 | Updated miniaudio to v0.10.13, fixes emscripten compilation error (#1306) | Random | |
| 2020-07-10 | WARNING: REMOVED: LoadImageEx() | raysan5 | |
| Reason for removal: This function forces a specific Image data format, it copies data internally (it could be confusing and lead to memory leaks), it's redundant, there is a simpler alternative and raylib promotes using structures directly | |||
| 2020-07-10 | REVIEW: Pointer lock emscripten API does not work #1241 | raysan5 | |
| It seems some internals change recently due to web security reasons and some emscripten HTML5 funtionalities like pointerLock or fullscreen modes behave very weird or just don't work as expected | |||
| 2020-07-10 | Correct issue when not supporting GIF format | raysan5 | |
| 2020-07-10 | ADDED: LoadImageAnim() to load animated sequence of images | raysan5 | |
| 2020-07-10 | Update miniaudio to v0.10.12, solves #1288 | raysan5 | |
| 2020-07-10 | Disable FBO support on OpenGL 2.1 #1290 | raysan5 | |
| 2020-07-10 | Chromium needs a larger audio buffer (#1300) | Random | |
| * Chromium needs a larger audio buffer: https://github.com/dr-soft/miniaudio/issues/150 * changed PLATFORM_WEB to __EMSCRIPTEN__ | |||
