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:
authorAntonioya <blendergit@gmail.com>2018-12-17 16:47:58 +0300
committerAntonioya <blendergit@gmail.com>2018-12-17 16:48:10 +0300
commit9b80c70fc5be1e054c470265d1cb6c7b00eb7b67 (patch)
tree8ee170f926b3feb34c9b7f4e62f5d152c44e32e7 /source/blender/draw
parentbb583542324ffe5ed6a1d71e1ab341e413736499 (diff)
GP: Change Primitive manipulator color
Diffstat (limited to 'source/blender/draw')
-rw-r--r--source/blender/draw/engines/gpencil/gpencil_draw_cache_impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/engines/gpencil/gpencil_draw_cache_impl.c b/source/blender/draw/engines/gpencil/gpencil_draw_cache_impl.c
index a098fb74bc8..d1033a94ffa 100644
--- a/source/blender/draw/engines/gpencil/gpencil_draw_cache_impl.c
+++ b/source/blender/draw/engines/gpencil/gpencil_draw_cache_impl.c
@@ -406,7 +406,7 @@ GPUBatch *DRW_gpencil_get_buffer_ctrlpoint_geom(bGPdata *gpd)
bGPDcontrolpoint *cp = &cps[i];
float color[4];
copy_v3_v3(color, cp->color);
- color[3] = 0.5f;
+ color[3] = 0.8f;
GPU_vertbuf_attr_set(vbo, color_id, idx, color);
/* scale size */