| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-31 | Reduce textures size2.5.0 | Ray | |
| 2019-05-29 | Added array bounds check to textures_bunnymark | Chris Dill | |
| 2019-05-29 | Define standard examples size | Ray | |
| 2019-05-27 | Review variables initialization | Ray | |
| 2019-05-25 | Review easings PR | Ray | |
| 2019-05-24 | rename easings_example.c to easings_testbed.c | flashback-fx | |
| 2019-05-24 | Move easings_example to its proper place | flashback-fx | |
| 2019-05-24 | Add easings example | flashback-fx | |
| 2019-05-22 | Move emscripten web shell to src | Ray | |
| 2019-05-22 | Comment tweaks | Ray | |
| 2019-05-21 | Review Makefiles | Ray | |
| 2019-05-21 | Review paths | Ray | |
| 2019-05-21 | Update core_3d_picking.c | Ray | |
| 2019-05-20 | Review ALL examples | Ray | |
| 2019-05-18 | Tweaks | Ray | |
| 2019-05-18 | Corrected issue with shader loading | Ray | |
| When using FormatText() several times in same function, returned string is static and so, the same is returned, resulting in failures on shader loading. | |||
| 2019-05-17 | Review shader examples | Ray | |
| 2019-05-17 | examples review | Ray | |
| 2019-05-16 | new example: shaders_eratosthenes | Ray | |
| Contributed by ProfJski | |||
| 2019-05-16 | Review shader to use provided texture coordinates | Ray | |
| Now shader uses `fragTexCoord` that are the full screen texture coordinates normalized, instead of `gl_fragCoord`, the unnormalized screen coordinates | |||
| 2019-05-16 | Review build config on web | Ray | |
| 2019-05-16 | Implement VR distortion shader for GLSL 100 | Ray | |
| 2019-05-16 | Review shaders for GLSL 100 | Ray | |
| 2019-05-15 | Ammended comment. | eggmund | |
| Also changed path to shader back to what it was originally. | |||
| 2019-05-15 | Updating julia set example. | eggmund | |
| Now dividing by the zoom instead of multiplying (in the shader), so zoom works as expected. Also zoom increase/decrease is now scaled depending on the current zoom. | |||
| 2019-05-15 | Update example! | Ray | |
| 2019-05-15 | Update shaders_julia_set.c | Ray | |
| 2019-05-15 | Update shaders_julia_set.c | Ray | |
| 2019-05-15 | Added new examples to Makefile | Ray | |
| 2019-05-15 | examples: CMake: restrict OpenGL deprecation warnings to macOS | Ahmad Fatoum | |
| 2019-05-14 | Improve support for web building | Ray | |
| 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 | examples review | Ray | |
| Redesigns, deletes and renames Also noted authors propertly on contributed examples | |||
| 2019-05-14 | Some example tweaks | Ray | |
| 2019-05-14 | Merge branch 'master' of https://github.com/raysan5/raylib | Ray | |
| 2019-05-14 | new examples: shaders_texture_waves | Ray | |
| 2019-05-12 | Fixed another small comment error | hmmmmmmmm | |
| 2019-05-12 | Fixed small error in comments | eggmund | |
| 2019-05-12 | Added julia set shader example. | eggmund | |
| 2019-05-10 | Add WinMM library for linkage | raysan5 | |
| Now it's required on Windows if not using a busy wait loop | |||
| 2019-05-07 | NO SUPPORT_BUSY_WAIT_LOOP by default | Ray | |
| 2019-05-06 | Remove broken example: standard_lighting | Ray | |
| 2019-05-06 | Move bunnymark example to another module | Ray | |
| 2019-05-06 | Update text_unicode.c | Ray | |
| 2019-05-06 | Review example formatting | Ray | |
| 2019-05-06 | Avoid warnings pre-evaluating values | Ray | |
| Variable operations inside the functions should be evaluated before the function operations. | |||
| 2019-05-06 | Example review | Ray | |
| 2019-05-04 | examples: CMake: warn once only about macOS OpenGL deprecation | Ahmad Fatoum | |
| Otherwise compiling rlgl is too spammy. While at it remove the now unneeded CheckIncludeFiles. | |||
| 2019-05-04 | examples: CMake: don't build core_loading_thread if no pthreads | Ahmad Fatoum | |
| The example requires pthreads and now C11 <stdatomic.h>, thus skip it if either isn't available. This also fixes the current Travis CI build failure for the Windows configuration. | |||
| 2019-05-04 | examples: core_loading_thread: fix race condition | Ahmad Fatoum | |
| A plain variable is insuffecient for inter-thread communication. Both the compiler and the processor may reorder accesses. The compiler could even cache dataLoaded with the result that STATE_FINISHED becomes unreachable. Fix this by using C11 atomic_bool, which guarantees sequential consistency. This fixes #827. | |||
| 2019-05-04 | examples: core_loading_thread: use symbolic names for state machine states | Ahmad Fatoum | |
| And while at it, use a switch clause to make the state machine structure clearer. | |||
