ea832628c4
Review last PR formatting to follow raylib standards
2020-08-23 21:10:59 +02:00
d140dc81c0
work on quat and matrix math - deleted multiple copies of raymath.h causing issues ( #1359 )
...
Co-authored-by: codifies <nospam@antispam.com >
2020-08-23 21:01:26 +02:00
959d0d2591
Review Makefiles for WEB compilation
2020-08-08 14:08:56 +02:00
0b52c57a24
Update Makefile emsdk paths
2020-07-14 19:07:51 +02:00
a33dd87c99
Added Blend Modes example. ( #1261 )
2020-05-22 02:30:23 +02:00
66e0d774bd
Revert "Update compilation warning flags ( #1151 )"
...
This reverts commit 2528854664 .
2020-03-28 18:39:56 +01:00
2528854664
Update compilation warning flags ( #1151 )
...
* Update compilation warning flags
Removed the -Wall flag that allow many warnings and added manually all the warning flags that don't generate warnings in the src/external folder.
Specifically, these are some of the flags reporting errors in src/external:
-Wmissing-prototypes
-Wunused-variable
-Wunused-value
-Wunused-parameter
-Wunused-function
* Uptade compilation flags in examples with missing -std=c99
2020-03-26 18:48:34 +01:00
efe359d613
as per request spotlight example ( #1146 )
...
Co-authored-by: codifies <nospam@antispam.com >
2020-03-24 14:27:14 +01:00
1b56f7917e
Update raylib version
2020-03-05 19:33:54 +01:00
41d3c47ffe
Update Makefile
2020-03-01 01:28:49 +01:00
67d0bf75a7
Update Makefile paths to use emscripten upstream
...
Note that emscripten upstream branch implements the new asyncify implementation, expected to be faster than emterpreter one.
2020-02-20 23:00:29 +01:00
eb2483338f
REVIEWED: Makefile, examples clean target #1087
2020-02-09 21:06:51 +01:00
97054e4e0f
Review ALL games to raylib 3.0
2020-02-06 18:07:25 +01:00
9ce2331cc1
[build] Makefile examples modularization
...
Now examples can be compiled by module, that's useful when compilation fails at some point
2020-01-30 13:47:39 +01:00
cacd4a9d90
Some examples tweaks
2020-01-30 12:27:04 +01:00
20e446cc7d
Review Makefiles for web compilation
2020-01-15 18:00:13 +01:00
10982fa184
Renamed directory
2020-01-09 13:14:57 +01:00
5e8b6b0157
Review flags and web compilation
2019-12-16 18:07:17 +01:00
c1a02e9fca
Review PR #1022
...
Actually OpenAL is not used any more, it should be using CoreAudio
2019-11-24 13:43:48 +01:00
f987ac9dca
fix example build on macos ( #1022 )
2019-11-24 13:41:23 +01:00
161c8b7d08
corrected examples Makefile target ( #985 )
2019-10-11 14:54:13 +02:00
a679b0ccc0
contributed simple shader example ( #973 )
...
Contributed simple shader example
2019-09-22 21:28:50 +02:00
d9d9c6111b
RENAMED: text_sprite_font > text_font_spritefont
2019-09-12 16:30:39 +02:00
c247c371c3
REDESIGNED: models_obj_loading > models_loading
2019-09-12 16:25:14 +02:00
dde1e0671f
examples makefile not deleting examples in Linux ( #955 )
...
I'm not sure why the clean command is so complex (especially given that find -type f -executable | xargs rm -fv works!)
but I fixed the version as is, to support x-pie-executable which was preventing it deleting anything on my system...
2019-08-27 19:58:49 +02:00
879c874330
Added scissor test and mouse painting examples proposed in #890 ( #919 )
...
- Updated Makefile with new examples
2019-07-28 11:12:13 +02:00
814952c01d
#917 This commit changes the path to 'shell.html' in all Makefiles ( #918 )
2019-07-27 11:45:49 +02:00
83a4eb0852
add multi channel audio to raudio ( #895 )
...
* added multi channel sound replay to raudio
added -fPIC to Makefile for Linux
added simple lighting and audio multi channel to examples Makefile
* not properly reporting audio buffer pool size...
2019-06-29 10:49:42 +02:00
55380f8489
Review DEBUG mode
2019-06-12 12:08:39 +02:00
63e320d405
Update Makefile
...
a minor issue: where the location of the file "raylib.rc.data" is wrong, and this will cause an error in compilation.
2019-06-09 01:08:10 +10:00
be7e56f51e
Move emscripten web shell to src
2019-05-22 10:40:51 +02:00
0027868d1f
Review Makefiles
2019-05-21 17:46:52 +02:00
8db2203bcc
Review paths
2019-05-21 10:16:52 +02:00
970f1e8ff1
examples review
2019-05-17 01:17:40 +02:00
ce87d2ced4
new example: shaders_eratosthenes
...
Contributed by ProfJski
2019-05-16 17:23:31 +02:00
9994f16479
Review build config on web
2019-05-16 15:40:28 +02:00
ab44033ed6
Added new examples to Makefile
2019-05-15 12:24:09 +02:00
7eb488a350
Improve support for web building
...
Note that building examples for web as they are (no code adaptation for web avoiding while loop) implies using the emterpreter... and that's very slow!
2019-05-14 18:01:20 +02:00
49a49e492a
Added julia set shader example.
2019-05-12 16:50:56 +01:00
e0e2346c22
NO SUPPORT_BUSY_WAIT_LOOP by default
2019-05-07 10:05:21 +02:00
73a54fcc3d
Update Makefile
2019-05-02 00:15:46 +02:00
270f563964
Minor tweaks
2019-04-28 18:30:27 +02:00
0c567cd259
WARNING: Issues on web building
...
Found some issues when building for web using latest emscripten 1.38.30, traced the error and found that eglGetProcAdress does not return function pointers for VAO functionality, supported by extension.
It requires more investigation but now it works (avoiding VAO usage)
2019-04-23 18:10:38 +02:00
99537efccf
Review some examples
2019-04-12 13:29:53 +02:00
f21761fbbb
Happy new year 2019
2019-04-07 17:49:12 +02:00
35bcbd1b60
Merge pull request #718 from MarcoLizza/shaders-uniforms-array
...
Shaders uniforms array
2019-01-09 17:01:59 +01:00
0fe56b1674
Adding basic palette-switching example using uniform arrays.
2019-01-09 16:20:56 +01:00
adf0c64864
Fixing typo in examples makefile, preventing build.
2019-01-09 16:08:10 +01:00
d5735720b0
Update Makefile for Emscripten
2019-01-01 20:53:30 +01:00
788bb78989
Some tweaks
2018-12-20 10:40:28 +01:00