[Bf-blender-cvs] [314439e6521] temp-lanpr-review: Cleanup: Remove snake mode structures in ED_lanpr.h

YimingWu noreply at git.blender.org
Wed Nov 20 10:23:34 CET 2019


Commit: 314439e6521b8e2ee2217eb24edf02542f7adaa2
Author: YimingWu
Date:   Mon Nov 18 21:48:34 2019 +0800
Branches: temp-lanpr-review
https://developer.blender.org/rB314439e6521b8e2ee2217eb24edf02542f7adaa2

Cleanup: Remove snake mode structures in ED_lanpr.h

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

M	source/blender/editors/include/ED_lanpr.h

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

diff --git a/source/blender/editors/include/ED_lanpr.h b/source/blender/editors/include/ED_lanpr.h
index 3a6dd1c3600..46b457ade56 100644
--- a/source/blender/editors/include/ED_lanpr.h
+++ b/source/blender/editors/include/ED_lanpr.h
@@ -55,25 +55,6 @@ typedef struct LANPR_StaticMemPool {
   SpinLock lock_mem;
 } LANPR_StaticMemPool;
 
-typedef struct LANPR_TextureSample {
-  struct LANPR_TextureSample *next, *prev;
-  int X, Y;
-  /** For future usage */
-  float Z;
-} LANPR_TextureSample;
-
-typedef struct LANPR_LineStripPoint {
-  struct LANPR_LineStripPoint *next, *prev;
-  float P[3];
-} LANPR_LineStripPoint;
-
-typedef struct LANPR_LineStrip {
-  struct LANPR_LineStrip *next, *prev;
-  ListBase points;
-  int point_count;
-  float total_length;
-} LANPR_LineStrip;
-
 typedef struct LANPR_RenderTriangle {
   struct LANPR_RenderTriangle *next, *prev;
   struct LANPR_RenderVert *v[3];



More information about the Bf-blender-cvs mailing list