[Bf-blender-cvs] [ea4119b8940] soc-2019-npr: LANPR: Removed edge detection entry in the mode selector.

YimingWu noreply at git.blender.org
Thu Jul 18 13:30:22 CEST 2019


Commit: ea4119b894037796ef9b5980490a6fad99844f03
Author: YimingWu
Date:   Thu Jul 18 19:29:48 2019 +0800
Branches: soc-2019-npr
https://developer.blender.org/rBea4119b894037796ef9b5980490a6fad99844f03

LANPR: Removed edge detection entry in the mode selector.

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

M	source/blender/makesrna/intern/rna_scene.c

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

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 432f9dcde0e..a3b6dde138a 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7149,7 +7149,8 @@ static void rna_def_scene_lanpr(BlenderRNA *brna)
   static const EnumPropertyItem rna_enum_lanpr_master_mode[] = {
       {LANPR_MASTER_MODE_SOFTWARE, "SOFTWARE", 0, "CPU", "Software edge calculation"},
       {LANPR_MASTER_MODE_DPIX, "DPIX", 0, "GPU", "DPIX GPU edge extraction"},
-      {LANPR_MASTER_MODE_SNAKE, "SNAKE", 0, "Edge Detection", "Edge detection filter and tracing"},
+      /* Temporally remove image filter mode. */
+      /* {LANPR_MASTER_MODE_SNAKE, "SNAKE", 0, "Edge Detection", "Edge detection filter and tracing"}, */
       {0, NULL, 0, NULL, NULL}};
 
   static const EnumPropertyItem rna_enum_lanpr_enable_post_processing[] = {



More information about the Bf-blender-cvs mailing list