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:
authorClément Foucault <foucault.clem@gmail.com>2022-10-24 13:55:24 +0300
committerClément Foucault <foucault.clem@gmail.com>2022-10-24 13:55:41 +0300
commita8731718a1c476ed0d7a95c2c25cb9da7e90e6be (patch)
tree7be0d63009a46c53c4721464657fabdd03c9ee56 /source/blender/draw/intern
parent9fc000cc6f55784166be571c06a5f67faba9b47f (diff)
GPencil: Fix regressions introduced in rB0ee9282b5c51
Batching was broken / disabled and starting indices were wrong.
Diffstat (limited to 'source/blender/draw/intern')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_gpencil.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_gpencil.cc b/source/blender/draw/intern/draw_cache_impl_gpencil.cc
index 1a77793bb5b..bc01ab24947 100644
--- a/source/blender/draw/intern/draw_cache_impl_gpencil.cc
+++ b/source/blender/draw/intern/draw_cache_impl_gpencil.cc
@@ -653,6 +653,9 @@ static void gpencil_sbuffer_stroke_ensure(bGPdata *gpd, bool do_stroke, bool do_
MEM_freeN(tpoints2d);
}
+ gps->runtime.stroke_start = do_fill ? gps->tot_triangles : 0;
+ gps->runtime.fill_start = 0;
+ gps->runtime.vertex_start = 0;
/* Fill buffers with data. */
gpencil_buffer_add_stroke(&ibo_builder, verts, cols, gps);