summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2020-08-06Reset close status for next frame #1339raysan5
2020-08-05Added raylib-jaiRay
2020-08-02Update 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-31Update raudio_standalone.craysan5
2020-07-31Update raudio_standalone.craysan5
2020-07-31LoadSound(): Use memory loading (WAV, OGG, MP3, FLAC) #1312raysan5
2020-07-30Fix color of ambient light (#1330)Adrie
2020-07-30rlCheckErrors (#1321)seanpringle
* rlglCheckErrors * rlglCheckErrors LOG_WARNING * rename to rlCheckErrors; improve messages; revert core.c
2020-07-28Support pthreads on PLATFORM_WEB compilationraysan5
2020-07-28Corrected issue with framebuffer size storage #1298raysan5
2020-07-28Small shader fix on vec3 initialization #1298raysan5
2020-07-24Consider empty title for window #1323Ray
2020-07-22DrawTriangleFan(): Add a comment about vertex order #1316Ray
2020-07-20[wip] MeshNormalsSmooth() (#1317)seanpringle
* MeshSmoothNormals() by average * wrong comment * spelling * use correct function naming convention
2020-07-17Find a better mechanism to avoid FBO on OpenGL 2.1 if required #1290raysan5
2020-07-17Issue with render size assignment on RPI/Android #1314raysan5
2020-07-17Reviewed comment in LoadIQM() #1315raysan5
2020-07-15clamp ray hit y position to ground plane height (#1311)seanpringle
2020-07-14fix emcc warning (-Wparentheses-equality) (#1310)Random
2020-07-14Update resources LICENSEraysan5
2020-07-14Update audio resources LICENSEraysan5
2020-07-14Update Makefile Androidraysan5
2020-07-14Update Makefile emsdk pathsraysan5
2020-07-14Update miniaudio to v0.10.14raysan5
2020-07-14scale perspective top calc for near culing plane (#1309)seanpringle
2020-07-13Remove conditional __EMSCRIPTEN__raysan5
Not required anymore
2020-07-13Updated miniaudio to v0.10.13, fixes emscripten compilation error (#1306)Random
2020-07-10WARNING: 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-10REVIEW: Pointer lock emscripten API does not work #1241raysan5
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-10Correct issue when not supporting GIF formatraysan5
2020-07-10ADDED: LoadImageAnim() to load animated sequence of imagesraysan5
2020-07-10Update miniaudio to v0.10.12, solves #1288raysan5
2020-07-10Disable FBO support on OpenGL 2.1 #1290raysan5
2020-07-10Chromium 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__
2020-07-10Review skybox shadersraysan5
2020-07-10Merge branch 'master' of https://github.com/raysan5/raylibraysan5
2020-07-10Review commentraysan5
2020-07-10Fix format-security error in rlgl_standalone.c (#1305)Daniel Jour
See #1304
2020-07-09Free leaked allocations from render objects (#1302)Terry Nguyen
2020-07-05Fix incorrect color transform to 255 space (#1297)Doyle
2020-07-04Update SPONSORS.mdRay
2020-06-30Expose additional configuration optionsRay
Some internal defines have been exposed in config.h
2020-06-29Update SPONSORS.mdRay
2020-06-27Added new function `DrawTextureTiled()` (#1291)Vlad Adrian
* Implemented DrawTextureTiled() * Example added
2020-06-27Minor format tweakRay
2020-06-27Corrected issue with OpenGL 1.1 supportRay
2020-06-25Update SPONSORS.mdRay
2020-06-25ADDED: UpdateTextureRec()Ray
2020-06-24[add] GetMonitorRefreshRate(int monitor); (#1289)Shylie
2020-06-23REVIEWED: textures_raw_data #1286Ray