[Bf-blender-cvs] [8500772d774] greasepencil-object: Check layer and frame before drawing

Antonio Vazquez noreply at git.blender.org
Tue Apr 11 16:33:01 CEST 2017


Commit: 8500772d774691dbf0209386b2df6f1f780b749b
Author: Antonio Vazquez
Date:   Tue Apr 11 11:34:31 2017 +0200
Branches: greasepencil-object
https://developer.blender.org/rB8500772d774691dbf0209386b2df6f1f780b749b

Check layer and frame before drawing

===================================================================

M	source/blender/draw/engines/gpencil/gpencil_mode.c

===================================================================

diff --git a/source/blender/draw/engines/gpencil/gpencil_mode.c b/source/blender/draw/engines/gpencil/gpencil_mode.c
index 6e5dec548e6..6e5a5646302 100644
--- a/source/blender/draw/engines/gpencil/gpencil_mode.c
+++ b/source/blender/draw/engines/gpencil/gpencil_mode.c
@@ -232,7 +232,14 @@ static void GPENCIL_cache_populate(void *vedata, Object *ob)
 
 	if (ob->type == OB_GPENCIL && ob->gpd)  {
 		for (bGPDlayer *gpl = ob->gpd->layers.first; gpl; gpl = gpl->next) {
+			/* don't draw layer if hidden */
+			if (gpl->flag & GP_LAYER_HIDE)
+				continue;
+
 			bGPDframe *gpf = BKE_gpencil_layer_getframe(gpl, CFRA, 0);
+			if (gpf == NULL)
+				continue;
+
 			// TODO: need to replace this code with full drawing checks
 			for (bGPDstroke *gps = gpf->strokes.first; gps; gps = gps->next) {
 				/* try to find shader group or create a new one */
@@ -252,12 +259,12 @@ static void GPENCIL_cache_populate(void *vedata, Object *ob)
 				struct Batch *fill_geom = DRW_cache_surface_get(ob); // TODO: replace with real funct
 				/* Add fill geom to a shading group */
 				DRW_shgroup_call_add(fillgrp, fill_geom, ob->obmat);
+#endif
 
 				/* stroke */
 				struct Batch *stroke_geom = DRW_cache_surface_get(ob); // TODO: replace with real funct
 				/* Add stroke geom to a shading group */
 				DRW_shgroup_call_add(strokegrp, stroke_geom, ob->obmat);
-#endif
 			}
 		}
 	}




More information about the Bf-blender-cvs mailing list