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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-07-23 11:56:08 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-23 11:56:08 +0400
commita9789d90ae7c4408684490844ee9edf37ae84f65 (patch)
tree88c8b17a31995148c730723941344fbf57605783 /source/blender/freestyle/intern/python/Interface1D
parent0c494442d34d05ea8e0d94daefcca5902a2d6149 (diff)
soc-2008-mxcurioni: renamed all Freestyle API related files with 'BPy_' prefix to avoid library name collision.
Included MediumType's initialization at proper time to avoid Blender's crash.
Diffstat (limited to 'source/blender/freestyle/intern/python/Interface1D')
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_Curve.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/Curve.cpp)0
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/FEdge.cpp)6
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.h (renamed from source/blender/freestyle/intern/python/Interface1D/FEdge.h)2
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/Stroke.cpp)6
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h (renamed from source/blender/freestyle/intern/python/Interface1D/Stroke.h)2
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/ViewEdge.cpp)0
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/Curve/Chain.cpp)0
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/FEdge/FEdgeSharp.cpp)0
-rw-r--r--source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp (renamed from source/blender/freestyle/intern/python/Interface1D/FEdge/FEdgeSmooth.cpp)0
9 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/freestyle/intern/python/Interface1D/Curve.cpp b/source/blender/freestyle/intern/python/Interface1D/BPy_Curve.cpp
index 4fac75b3f0d..4fac75b3f0d 100644
--- a/source/blender/freestyle/intern/python/Interface1D/Curve.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_Curve.cpp
diff --git a/source/blender/freestyle/intern/python/Interface1D/FEdge.cpp b/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp
index 0cdfb9f1e0d..56dc76f0acd 100644
--- a/source/blender/freestyle/intern/python/Interface1D/FEdge.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp
@@ -1,7 +1,7 @@
-#include "FEdge.h"
+#include "BPy_FEdge.h"
-#include "../Convert.h"
-#include "../Interface0D/SVertex.h"
+#include "../BPy_Convert.h"
+#include "../Interface0D/BPy_SVertex.h"
#ifdef __cplusplus
extern "C" {
diff --git a/source/blender/freestyle/intern/python/Interface1D/FEdge.h b/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.h
index 230a5f36954..c54dbee98b7 100644
--- a/source/blender/freestyle/intern/python/Interface1D/FEdge.h
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.h
@@ -1,7 +1,7 @@
#ifndef FREESTYLE_PYTHON_FEDGE_H
#define FREESTYLE_PYTHON_FEDGE_H
-#include "../Interface1D.h"
+#include "../BPy_Interface1D.h"
#include "../../view_map/Silhouette.h"
#ifdef __cplusplus
diff --git a/source/blender/freestyle/intern/python/Interface1D/Stroke.cpp b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp
index 9951f21a0e1..8027f625cc5 100644
--- a/source/blender/freestyle/intern/python/Interface1D/Stroke.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp
@@ -1,7 +1,7 @@
-#include "Stroke.h"
+#include "BPy_Stroke.h"
-#include "../Convert.h"
-#include "../Interface0D/SVertex.h"
+#include "../BPy_Convert.h"
+#include "../Interface0D/BPy_SVertex.h"
#include "../../stroke/StrokeIterators.h"
#ifdef __cplusplus
diff --git a/source/blender/freestyle/intern/python/Interface1D/Stroke.h b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h
index fc4b426fd53..52c6d214b85 100644
--- a/source/blender/freestyle/intern/python/Interface1D/Stroke.h
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.h
@@ -1,7 +1,7 @@
#ifndef FREESTYLE_PYTHON_STROKE_H
#define FREESTYLE_PYTHON_STROKE_H
-#include "../Interface1D.h"
+#include "../BPy_Interface1D.h"
#include "../../stroke/Stroke.h"
#ifdef __cplusplus
diff --git a/source/blender/freestyle/intern/python/Interface1D/ViewEdge.cpp b/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp
index 1b55b601c89..1b55b601c89 100644
--- a/source/blender/freestyle/intern/python/Interface1D/ViewEdge.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp
diff --git a/source/blender/freestyle/intern/python/Interface1D/Curve/Chain.cpp b/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp
index e69de29bb2d..e69de29bb2d 100644
--- a/source/blender/freestyle/intern/python/Interface1D/Curve/Chain.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp
diff --git a/source/blender/freestyle/intern/python/Interface1D/FEdge/FEdgeSharp.cpp b/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp
index da409ffe209..da409ffe209 100644
--- a/source/blender/freestyle/intern/python/Interface1D/FEdge/FEdgeSharp.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp
diff --git a/source/blender/freestyle/intern/python/Interface1D/FEdge/FEdgeSmooth.cpp b/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp
index e453bbdc863..e453bbdc863 100644
--- a/source/blender/freestyle/intern/python/Interface1D/FEdge/FEdgeSmooth.cpp
+++ b/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp