Cleanup: clang-format

This commit is contained in:
Lukas Stockner 2019-12-26 20:15:58 +01:00
parent e4413dc72b
commit d35a319687
Notes: blender-bot 2023-05-31 04:43:10 +02:00
Referenced by issue #72791, Cycles, mixing two Random Walk SSS nodes causes energy loss (normal pathtracing only)
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ color image_texture_lookup(string filename,
/* Flip the y coordinate, but preserve UDIM tiles. */
float flip_v;
if (is_tiled) {
float v_i = (int) v;
float v_i = (int)v;
flip_v = v_i + (1.0 - (v - v_i));
}
else {