From 2afbd14c596746be22951e7a8cb9e1bc769a7128 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Thu, 17 Oct 2019 11:15:22 +0200 Subject: Fix T70887: GPencil edit lines are not displayed in the right place The lines were not using the matrix to calc the tarnsformation. --- source/blender/draw/engines/gpencil/gpencil_draw_utils.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/draw') diff --git a/source/blender/draw/engines/gpencil/gpencil_draw_utils.c b/source/blender/draw/engines/gpencil/gpencil_draw_utils.c index 9599c91bfd7..68624540d08 100644 --- a/source/blender/draw/engines/gpencil/gpencil_draw_utils.c +++ b/source/blender/draw/engines/gpencil/gpencil_draw_utils.c @@ -1286,12 +1286,14 @@ static void gpencil_draw_strokes(GpencilBatchCache *cache, if (!stl->g_data->shgrps_edit_line) { stl->g_data->shgrps_edit_line = DRW_shgroup_create(e_data->gpencil_line_sh, psl->edit_pass); + DRW_shgroup_uniform_mat4(stl->g_data->shgrps_edit_line, "gpModelMatrix", ob->obmat); } if (!stl->g_data->shgrps_edit_point) { stl->g_data->shgrps_edit_point = DRW_shgroup_create(e_data->gpencil_edit_point_sh, psl->edit_pass); const float *viewport_size = DRW_viewport_size_get(); DRW_shgroup_uniform_vec2(stl->g_data->shgrps_edit_point, "Viewport", viewport_size, 1); + DRW_shgroup_uniform_mat4(stl->g_data->shgrps_edit_point, "gpModelMatrix", ob->obmat); } gpencil_add_editpoints_vertexdata(cache, ob, gpd, gpl, gpf, gps); -- cgit v1.2.3