[Bf-blender-cvs] [512f3852100] temp-lineart-contained: LineArt: Fix pointer in struct LineartRenderLine **testing;

YimingWu noreply at git.blender.org
Tue Mar 16 02:45:48 CET 2021


Commit: 512f385210009f347886a159f15042c199dd3a63
Author: YimingWu
Date:   Tue Mar 16 09:45:32 2021 +0800
Branches: temp-lineart-contained
https://developer.blender.org/rB512f385210009f347886a159f15042c199dd3a63

LineArt: Fix pointer in struct LineartRenderLine **testing;

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

M	source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h

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

diff --git a/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h b/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h
index 90cfe934d5d..8092a78fc8c 100644
--- a/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h
+++ b/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h
@@ -73,7 +73,7 @@ typedef struct LineartRenderTriangleThread {
    * The size of LineartRenderTriangle is dynamically allocated to contain set thread number of
    * "testing" field. Worker threads will test lines against the "base" triangle.
    * At least one thread is present, thus we always have at least testing[0]. */
-  struct LineartRenderLine *testing;
+  struct LineartRenderLine **testing;
 } LineartRenderTriangleThread;
 
 typedef enum eLineArtElementNodeFlag {



More information about the Bf-blender-cvs mailing list