Ray
6f98c0c9b6
Update windows.yml
2020-08-17 22:49:03 +02:00
Ray
eb8cf7e4d2
Update windows.yml
2020-08-17 22:48:12 +02:00
Ray
5f78b78489
Update windows.yml
2020-08-17 22:42:34 +02:00
raysan5
5c097b26d4
Merge branch 'master' of https://github.com/raysan5/raylib
2020-08-17 22:41:38 +02:00
raysan5
090490389e
Improved Makefile clean on Windows
2020-08-17 22:41:26 +02:00
Ray
cd1b71b3f9
Update windows.yml
2020-08-17 22:27:44 +02:00
raysan5
921f0c02e2
Update Makefile
2020-08-17 22:27:22 +02:00
Ray
f618c41061
Update windows.yml
2020-08-17 21:54:39 +02:00
Ray
38d4768cdd
Update windows.yml
2020-08-17 21:42:37 +02:00
Ray
f86126aaea
Update windows.yml
2020-08-17 21:25:16 +02:00
Ray
e7f507c204
Update windows.yml
2020-08-17 21:20:02 +02:00
Ray
c6ddaaf953
Update windows.yml
2020-08-17 21:10:34 +02:00
Ray
ebeee7ebed
Update windows.yml
2020-08-17 21:07:03 +02:00
Ray
6df0f2c535
Update linux.yml
2020-08-17 21:05:42 +02:00
Ray
1d9cdc1d83
Update macos.yml
2020-08-17 21:04:58 +02:00
Ray
be6e1e7c06
Update macos.yml
2020-08-17 21:04:20 +02:00
Ray
6f012d44d4
Update linux.yml
2020-08-17 21:03:58 +02:00
Ray
ceea5cb99b
Update and rename ci_src_examples_linux.yml to linux.yml
2020-08-17 21:02:56 +02:00
Ray
62302b1f71
Update and rename ci_src_examples_macos.yml to macos.yml
2020-08-17 20:54:10 +02:00
Ray
18aef2f781
Rename ci_src_examples_win.yml to ci_src_examples_win.yml.disabled
2020-08-17 20:49:04 +02:00
Ray
4fd227527e
Rename cd_src_release.yml to cd_src_release.yml.disabled
2020-08-17 20:48:44 +02:00
Ray
2dd4ab9535
Update windows.yml
2020-08-17 20:47:58 +02:00
Ray
a96b2b5b0d
Update windows.yml
2020-08-17 20:46:25 +02:00
Ray
e3709a9754
Create windows.yml
2020-08-17 20:40:17 +02:00
raysan5
2d0811d94c
Update Makefile
2020-08-17 20:38:06 +02:00
raysan5
c32ae480af
RENAMED: FormatText() -> TextFormat()
...
This function was renamed for consistency in raylib 3.0, just unified all examples to use TextFormat() instead of FormatText()
2020-08-16 11:28:15 +02:00
raysan5
26f6a64a39
NEW EXAMPLE: shaders_hot_reloading #1198
2020-08-16 11:18:25 +02:00
raysan5
ebdeab7e25
Code reorganization on example
2020-08-16 11:17:33 +02:00
Ray
7b346dbbe1
Review issue with .fnt -> .png path #1351
...
When .fnt file is in the .exe path, image path was wrongly calculated
2020-08-15 11:32:23 +02:00
Ray
902a97f540
Update BINDINGS.md
2020-08-15 11:00:32 +02:00
Ray
53b17765f4
Added raylib-luajit
2020-08-13 10:53:09 +02:00
Gaëtan Blaise-Cazalet
810f51b3e7
Change raylib version for VSCode mingw project makefile ( #1347 )
2020-08-12 15:04:17 +02:00
raysan5
ad1b3330b7
Support mulstiple WAV sampleSize for MusicStream #1340
...
24bit per sample is not supported internally and automatically converted 16bit
2020-08-11 19:08:07 +02:00
Henrique de Lima
702341ae6e
Making the windows build script a bit faster by verifying if the msvc environment was set up previously and only setting it up if it wasn't ( #1346 )
2020-08-10 21:08:51 +02:00
Ray
959d0d2591
Review Makefiles for WEB compilation
2020-08-08 14:08:56 +02:00
Ahmad Fatoum
1841a6bd3b
CMake: allow spaces in CMAKE_INSTALL_PREFIX
...
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-08 01:11:45 +02:00
Ahmad Fatoum
6108ba89df
CMake: don't use raylib_static name for MinGW on Windows
...
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-08 01:11:45 +02:00
raysan5
2c7dc70878
Reset close status for next frame #1339
2020-08-06 11:47:46 +02:00
Ray
2d866d5118
Added raylib-jai
2020-08-05 12:19:13 +02:00
Rfaile313
9e75f870bb
Update Makefile for web ( #1332 )
...
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-08-02 20:21:59 +02:00
raysan5
168948d91d
Update raudio_standalone.c
2020-07-31 12:31:40 +02:00
raysan5
7eb6cb470b
Update raudio_standalone.c
2020-07-31 12:13:10 +02:00
raysan5
6e9e7bd6bc
LoadSound(): Use memory loading (WAV, OGG, MP3, FLAC) #1312
2020-07-31 12:13:04 +02:00
Adrie
3c095f9d34
Fix color of ambient light ( #1330 )
2020-07-30 12:51:58 +02:00
seanpringle
1d895616f7
rlCheckErrors ( #1321 )
...
* rlglCheckErrors
* rlglCheckErrors LOG_WARNING
* rename to rlCheckErrors; improve messages; revert core.c
2020-07-30 12:50:20 +02:00
raysan5
9c2ff464b0
Support pthreads on PLATFORM_WEB compilation
2020-07-28 20:36:10 +02:00
raysan5
20301d1e5d
Corrected issue with framebuffer size storage #1298
2020-07-28 11:44:45 +02:00
raysan5
488c60d139
Small shader fix on vec3 initialization #1298
2020-07-28 11:27:05 +02:00
Ray
b5eb104b08
Consider empty title for window #1323
2020-07-24 18:20:37 +02:00
Ray
14d37464ad
DrawTriangleFan(): Add a comment about vertex order #1316
2020-07-22 11:12:04 +02:00