summaryrefslogtreecommitdiffhomepage
path: root/examples
AgeCommit message (Collapse)Author
2019-05-16Review build config on webRay
2019-05-16Implement VR distortion shader for GLSL 100Ray
2019-05-16Review shaders for GLSL 100Ray
2019-05-15Ammended comment.eggmund
Also changed path to shader back to what it was originally.
2019-05-15Updating 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-15Update example!Ray
2019-05-15Update shaders_julia_set.cRay
2019-05-15Update shaders_julia_set.cRay
2019-05-15Added new examples to MakefileRay
2019-05-15examples: CMake: restrict OpenGL deprecation warnings to macOSAhmad Fatoum
2019-05-14Improve support for web buildingRay
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-14examples reviewRay
Redesigns, deletes and renames Also noted authors propertly on contributed examples
2019-05-14Some example tweaksRay
2019-05-14Merge branch 'master' of https://github.com/raysan5/raylibRay
2019-05-14new examples: shaders_texture_wavesRay
2019-05-12Fixed another small comment errorhmmmmmmmm
2019-05-12Fixed small error in commentseggmund
2019-05-12Added julia set shader example.eggmund
2019-05-10Add WinMM library for linkageraysan5
Now it's required on Windows if not using a busy wait loop
2019-05-07NO SUPPORT_BUSY_WAIT_LOOP by defaultRay
2019-05-06Remove broken example: standard_lightingRay
2019-05-06Move bunnymark example to another moduleRay
2019-05-06Update text_unicode.cRay
2019-05-06Review example formattingRay
2019-05-06Avoid warnings pre-evaluating valuesRay
Variable operations inside the functions should be evaluated before the function operations.
2019-05-06Example reviewRay
2019-05-04examples: CMake: warn once only about macOS OpenGL deprecationAhmad Fatoum
Otherwise compiling rlgl is too spammy. While at it remove the now unneeded CheckIncludeFiles.
2019-05-04examples: CMake: don't build core_loading_thread if no pthreadsAhmad 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-04examples: core_loading_thread: fix race conditionAhmad 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-04examples: core_loading_thread: use symbolic names for state machine statesAhmad Fatoum
And while at it, use a switch clause to make the state machine structure clearer.
2019-05-03Renamed exampleRay
2019-05-03Create examples_template.cRay
2019-05-03Batch of 9 new shapes examples!Ray
Some examples included in this batch require the included libraries: `easings.h` and `raygui.h`. Examples included: - shapes_bouncing_ball - shapes_collision_area - shapes_following_eyes - shapes_draw_circle_sector (requires raygui.h) - shapes_draw_rectangle_rounded (requires raygui.h) - shapes_draw_ring (requires raygui.h) - shapes_easings_ball_anim (requires easings.h) - shapes_easings_box_anim (requires easings.h) - shapes_easings_rectangle_array (requires easings.h)
2019-05-03new example: textures_sprite_explosionRay
2019-05-02Update models_first_person_maze.cRay
2019-05-02Added missing includeRay
2019-05-02new example: textures_sprite_buttonRay
2019-05-02new example: core_loading_threadRay
Data loading in a second thread with progress bar in main thread
2019-05-02example review: models_first_person_mazeRay
Added walls collision check
2019-05-02Update MakefileRay
2019-04-28Minor tweaksraysan5
2019-04-28Damn, made a mistakeReece Mackie
2019-04-28Update gamepad example to use new enumsReece Mackie
2019-04-28Remove example on Androidraysan5
2019-04-23new example: models_first_person_maze -WIP-Ray
2019-04-23Fix for DrawRectangleRoundedDemizdor
2019-04-23WARNING: Issues on web buildingRay
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-22[rnet] module WIP (#809)Jak
Added experimental network module
2019-04-21Fix formatting ...not very good at thisVlad Adrian
2019-04-21Fixed formatting! Grumble, grumble...Vlad Adrian