summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2020-08-17Update macos.ymlRay
2020-08-17Update macos.ymlRay
2020-08-17Update linux.ymlRay
2020-08-17Update and rename ci_src_examples_linux.yml to linux.ymlRay
2020-08-17Update and rename ci_src_examples_macos.yml to macos.ymlRay
2020-08-17Rename ci_src_examples_win.yml to ci_src_examples_win.yml.disabledRay
2020-08-17Rename cd_src_release.yml to cd_src_release.yml.disabledRay
2020-08-17Update windows.ymlRay
2020-08-17Update windows.ymlRay
2020-08-17Create windows.ymlRay
2020-08-17Update Makefileraysan5
2020-08-16RENAMED: 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-16NEW EXAMPLE: shaders_hot_reloading #1198raysan5
2020-08-16Code reorganization on exampleraysan5
2020-08-15Review issue with .fnt -> .png path #1351Ray
When .fnt file is in the .exe path, image path was wrongly calculated
2020-08-15Update BINDINGS.mdRay
2020-08-13Added raylib-luajitRay
2020-08-12Change raylib version for VSCode mingw project makefile (#1347)Gaëtan Blaise-Cazalet
2020-08-11Support mulstiple WAV sampleSize for MusicStream #1340raysan5
24bit per sample is not supported internally and automatically converted 16bit
2020-08-10Making the windows build script a bit faster by verifying if the msvc ↵Henrique de Lima
environment was set up previously and only setting it up if it wasn't (#1346)
2020-08-08Review Makefiles for WEB compilationRay
2020-08-08CMake: allow spaces in CMAKE_INSTALL_PREFIXAhmad Fatoum
We use @CMAKE_INSTALL_PREFIX@ in the pkg-config template, but the way we use it breaks when used with a path containing a space. Use quote to fix this. This now means, we probably can't have quotes, but that's of lesser concern.
2020-08-08CMake: don't use raylib_static name for MinGW on WindowsAhmad 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-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