Skip to content
Snippets Groups Projects
Commit afc3c822 authored by DarkGod's avatar DarkGod
Browse files

Fixed Flames of Urh'Rok shader (and other similar ones) for ATI GPUs

parent f782f0ee
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -117,7 +117,7 @@ float GetFireDelta(float currTime, vec2 pos, float freqMult, float stretchMult,
pos *= freqMult;
pos.y += currTime * scrollSpeed;
delta += snoise(vec3(pos * 1.0, currTime * 1.0 * evolutionSpeed)) * 1.5;
// delta += snoise(vec3(pos * 1.0, currTime * 1.0 * evolutionSpeed)) * 1.5;
delta += snoise(vec3(pos * 2.0, currTime * 2.0 * evolutionSpeed)) * 1.5;
delta += snoise(vec3(pos * 4.0, currTime * 4.0 * evolutionSpeed)) * 1.5;
delta += snoise(vec3(pos * 8.0, currTime * 8.0 * evolutionSpeed)) * 1.5;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment