Fix T69532: Wave texture fails with a compile error.

`noise_turbulence` was renamed to `fractal_noise`.

Reviewers: brecht

Differential Revision: https://developer.blender.org/D5691
This commit is contained in:
OmarSquircleArt 2019-09-05 13:25:13 +02:00
parent c060a4a714
commit 3a0b22b2da
Notes: blender-bot 2023-06-07 10:31:13 +02:00
Referenced by issue #69532, Wave texture gives GPUShader compile error and shown as missing pink (Eevee and Lookdev)
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ float calc_wave(
}
if (distortion != 0.0) {
n += distortion * noise_turbulence(p * detail_scale, detail, 0);
n += distortion * fractal_noise(p * detail_scale, detail);
}
if (wave_profile == 0) { /* profile sin */