Cleanup: clang format

This commit is contained in:
Aaron Carlisle 2021-12-27 16:23:23 -05:00
parent d5b72fb06c
commit 8c4edd1b37
Notes: blender-bot 2023-02-14 00:10:08 +01:00
Referenced by issue #94441, Segfault in parent_set_exec with type=BONE
Referenced by issue #94427, Stops working after  bpy.ops.initial.settings() at startup. (apple beachball of death)
1 changed files with 2 additions and 1 deletions

View File

@ -736,7 +736,8 @@ static void gpencil_apply_randomness(tGPsdata *p,
/* Apply randomness to uv texture rotation. */
if ((brush_settings->uv_random > 0.0f) && (uv)) {
if ((brush_settings->flag2 & GP_BRUSH_USE_UV_AT_STROKE) == 0) {
float rand = BLI_hash_int_01(BLI_hash_int_2d((int)pt->m_xy[0], gpd->runtime.sbuffer_used)) * 2.0f -
float rand = BLI_hash_int_01(BLI_hash_int_2d((int)pt->m_xy[0], gpd->runtime.sbuffer_used)) *
2.0f -
1.0f;
value = rand * M_PI_2 * brush_settings->uv_random;
}