summaryrefslogtreecommitdiffhomepage
path: root/examples/shaders/shaders_julia_set.c
AgeCommit message (Collapse)Author
2022-07-20REVIEWED: examples descriptionsRay
2022-06-21Added new comment to examplesRay
2021-06-23Review BeginTextureMode() usageRay
Moved outside BeginDrawing()/EndDrawing() to illustrate drawing is happening to an external texture (not screen)
2021-05-08Added support for additional mouse buttons (#1753)Lambert Wang
* Added support for additional mouse buttons * Renamed mouse button enum Co-authored-by: Lambert Wang <[email protected]>
2021-04-25Fixes for 64 bit typecast warnings (#1733)Jeffery Myers
2021-04-22Remove trail spacesRay
2021-04-07Update shaders_julia_set.cRay
2021-03-20Example considering HighDPI on RenderTexture draw #1086Ray
2021-03-14WARNING: VERY BREAKING CHANGE: Renamed some enum values for consistencyRay
Some enums values have been renamed to be more consistent and also provide a more detailed description: - ShaderLocationIndex: LOC_VERTEX_POSITION -> SHADER_SHADER_LOC_VERTEX_POSITION - ShaderUniformDataType: UNIFORM_VEC2 -> SHADER_UNIFORM_VEC2 - MaterialMapType: MAP_ALBEDO -> MATERIAL_MAP_ALBEDO - PixelFormat: UNCOMPRESSED_GRAYSCALE -> PIXELFORMAT_UNCOMPRESSED_GRAYSCALE
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()
2019-05-20Review ALL examplesRay
2019-05-18TweaksRay
2019-05-16Review shader to use provided texture coordinatesRay
Now shader uses `fragTexCoord` that are the full screen texture coordinates normalized, instead of `gl_fragCoord`, the unnormalized screen coordinates
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-14examples reviewRay
Redesigns, deletes and renames Also noted authors propertly on contributed examples
2019-05-12Fixed another small comment errorhmmmmmmmm
2019-05-12Fixed small error in commentseggmund
2019-05-12Added julia set shader example.eggmund