Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-08-06 11:20:24 +0300
committerJacques Lucke <jacques@blender.org>2021-08-06 11:20:24 +0300
commitd98791a106ffd1546ec476f3f38caeedd6f99047 (patch)
treee3b839f52d6e79248a53044149859cbb7028c422
parent6188c29603da211b8305d8fe7c082dcae61688ab (diff)
Cleanup: clang tidy
`bugprone-signed-char-misuse`
-rw-r--r--source/blender/draw/intern/draw_cache_impl_gpencil.c2
-rw-r--r--source/blender/editors/gpencil/gpencil_primitive.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_gpencil.c b/source/blender/draw/intern/draw_cache_impl_gpencil.c
index 2a476ab41bb..6ed4148a7fe 100644
--- a/source/blender/draw/intern/draw_cache_impl_gpencil.c
+++ b/source/blender/draw/intern/draw_cache_impl_gpencil.c
@@ -553,7 +553,7 @@ bGPDstroke *DRW_cache_gpencil_sbuffer_stroke_data_get(Object *ob)
gps->runtime.stroke_start = 1; /* Add one for the adjacency index. */
copy_v4_v4(gps->vert_color_fill, gpd->runtime.vert_color_fill);
/* Caps. */
- gps->caps[0] = gps->caps[1] = brush->gpencil_settings->caps_type;
+ gps->caps[0] = gps->caps[1] = (short)brush->gpencil_settings->caps_type;
gpd->runtime.sbuffer_gps = gps;
}
diff --git a/source/blender/editors/gpencil/gpencil_primitive.c b/source/blender/editors/gpencil/gpencil_primitive.c
index 27374f21b66..7e6ff53de14 100644
--- a/source/blender/editors/gpencil/gpencil_primitive.c
+++ b/source/blender/editors/gpencil/gpencil_primitive.c
@@ -336,7 +336,7 @@ static void gpencil_primitive_set_initdata(bContext *C, tGPDprimitive *tgpi)
gps->inittime = 0.0f;
/* Set stroke caps. */
- gps->caps[0] = gps->caps[1] = brush->gpencil_settings->caps_type;
+ gps->caps[0] = gps->caps[1] = (short)brush->gpencil_settings->caps_type;
/* Apply the vertex color to fill. */
ED_gpencil_fill_vertex_color_set(ts, brush, gps);