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:
Diffstat (limited to 'intern/moto')
-rw-r--r--intern/moto/include/GEN_List.h5
-rw-r--r--intern/moto/include/GEN_Map.h5
-rw-r--r--intern/moto/include/MT_CmMatrix4x4.h4
-rwxr-xr-xintern/moto/include/MT_Matrix3x3.h4
-rwxr-xr-xintern/moto/include/MT_Matrix4x4.h4
-rwxr-xr-xintern/moto/include/MT_MinMax.h4
-rw-r--r--intern/moto/include/MT_Optimize.h4
-rw-r--r--intern/moto/include/MT_Plane3.h4
-rw-r--r--intern/moto/include/MT_Point2.h4
-rw-r--r--intern/moto/include/MT_Point3.h4
-rw-r--r--intern/moto/include/MT_Quaternion.h4
-rwxr-xr-xintern/moto/include/MT_Scalar.h4
-rwxr-xr-xintern/moto/include/MT_Stream.h4
-rw-r--r--intern/moto/include/MT_Transform.h4
-rwxr-xr-xintern/moto/include/MT_Tuple2.h4
-rwxr-xr-xintern/moto/include/MT_Tuple3.h4
-rwxr-xr-xintern/moto/include/MT_Tuple4.h4
-rw-r--r--intern/moto/include/MT_Vector2.h4
-rw-r--r--intern/moto/include/MT_Vector3.h4
-rw-r--r--intern/moto/include/MT_Vector4.h4
-rw-r--r--intern/moto/include/MT_assert.h4
-rwxr-xr-xintern/moto/include/MT_random.h4
-rw-r--r--intern/moto/include/NM_Scalar.h5
23 files changed, 0 insertions, 95 deletions
diff --git a/intern/moto/include/GEN_List.h b/intern/moto/include/GEN_List.h
index fd209098342..00fdbb85ad1 100644
--- a/intern/moto/include/GEN_List.h
+++ b/intern/moto/include/GEN_List.h
@@ -60,14 +60,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-
#ifndef GEN_LIST_H
#define GEN_LIST_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
class GEN_Link {
public:
GEN_Link() : m_next(0), m_prev(0) {}
diff --git a/intern/moto/include/GEN_Map.h b/intern/moto/include/GEN_Map.h
index 6459d75a090..64a2c3cfc6e 100644
--- a/intern/moto/include/GEN_Map.h
+++ b/intern/moto/include/GEN_Map.h
@@ -32,11 +32,6 @@
#ifndef GEN_MAP_H
#define GEN_MAP_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-
template <class Key, class Value>
class GEN_Map {
private:
diff --git a/intern/moto/include/MT_CmMatrix4x4.h b/intern/moto/include/MT_CmMatrix4x4.h
index 2bebddd444a..86858576abf 100644
--- a/intern/moto/include/MT_CmMatrix4x4.h
+++ b/intern/moto/include/MT_CmMatrix4x4.h
@@ -32,10 +32,6 @@
#ifndef INCLUDED_MT_CmMatrix4x4
#define INCLUDED_MT_CmMatrix4x4
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
/**
* A 4x4 matrix. This is an OpenGl style matrix (column major) meaning
* that the vector {m[0][0],m[0][1],m[0][2],m[0][3]} is the first column of
diff --git a/intern/moto/include/MT_Matrix3x3.h b/intern/moto/include/MT_Matrix3x3.h
index 949ecf73dd9..c9597630ed1 100755
--- a/intern/moto/include/MT_Matrix3x3.h
+++ b/intern/moto/include/MT_Matrix3x3.h
@@ -46,10 +46,6 @@
#ifndef MT_MATRIX3X3_H
#define MT_MATRIX3X3_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <MT_assert.h>
#include "MT_Vector3.h"
diff --git a/intern/moto/include/MT_Matrix4x4.h b/intern/moto/include/MT_Matrix4x4.h
index a5428f50f0c..b4f271000dd 100755
--- a/intern/moto/include/MT_Matrix4x4.h
+++ b/intern/moto/include/MT_Matrix4x4.h
@@ -39,10 +39,6 @@
#ifndef MT_MATRIX4X4_H
#define MT_MATRIX4X4_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <MT_assert.h>
#include "MT_Vector4.h"
diff --git a/intern/moto/include/MT_MinMax.h b/intern/moto/include/MT_MinMax.h
index f06c86feae5..06f8a8d18c8 100755
--- a/intern/moto/include/MT_MinMax.h
+++ b/intern/moto/include/MT_MinMax.h
@@ -46,10 +46,6 @@
#ifndef MT_MINMAX_H
#define MT_MINMAX_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
template <class T>
inline const T& MT_min(const T& a, const T& b) {
return b < a ? b : a;
diff --git a/intern/moto/include/MT_Optimize.h b/intern/moto/include/MT_Optimize.h
index 965bf30f7c9..c09a9431a34 100644
--- a/intern/moto/include/MT_Optimize.h
+++ b/intern/moto/include/MT_Optimize.h
@@ -32,10 +32,6 @@
#ifndef GEN_OPTIMIZE_H
#define GEN_OPTIMIZE_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef GEN_INLINED
#define GEN_INLINE inline
#else
diff --git a/intern/moto/include/MT_Plane3.h b/intern/moto/include/MT_Plane3.h
index 002ef45933b..5caf1c4c36e 100644
--- a/intern/moto/include/MT_Plane3.h
+++ b/intern/moto/include/MT_Plane3.h
@@ -32,10 +32,6 @@
#ifndef MT_PLANE3
#define MT_PLANE3
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Tuple4.h"
#include "MT_Point3.h"
diff --git a/intern/moto/include/MT_Point2.h b/intern/moto/include/MT_Point2.h
index fd98d261029..c6995f1ab0b 100644
--- a/intern/moto/include/MT_Point2.h
+++ b/intern/moto/include/MT_Point2.h
@@ -46,10 +46,6 @@
#ifndef MT_POINT2_H
#define MT_POINT2_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Vector2.h"
class MT_Point2 : public MT_Vector2 {
diff --git a/intern/moto/include/MT_Point3.h b/intern/moto/include/MT_Point3.h
index fd4c8064fa5..5e85dc596ab 100644
--- a/intern/moto/include/MT_Point3.h
+++ b/intern/moto/include/MT_Point3.h
@@ -46,10 +46,6 @@
#ifndef MT_POINT_H
#define MT_POINT_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Vector3.h"
class MT_Point3 : public MT_Vector3 {
diff --git a/intern/moto/include/MT_Quaternion.h b/intern/moto/include/MT_Quaternion.h
index 3d0add4c73e..aa2045fc56f 100644
--- a/intern/moto/include/MT_Quaternion.h
+++ b/intern/moto/include/MT_Quaternion.h
@@ -46,10 +46,6 @@
#ifndef MT_QUATERNION_H
#define MT_QUATERNION_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <MT_assert.h>
#include "MT_Vector3.h"
diff --git a/intern/moto/include/MT_Scalar.h b/intern/moto/include/MT_Scalar.h
index 6a3429f69a6..0a72a52c20e 100755
--- a/intern/moto/include/MT_Scalar.h
+++ b/intern/moto/include/MT_Scalar.h
@@ -49,10 +49,6 @@
#include <math.h>
#include <float.h>
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_random.h"
#include "NM_Scalar.h"
diff --git a/intern/moto/include/MT_Stream.h b/intern/moto/include/MT_Stream.h
index a2729ced817..49378eceb18 100755
--- a/intern/moto/include/MT_Stream.h
+++ b/intern/moto/include/MT_Stream.h
@@ -32,10 +32,6 @@
#ifndef GEN_STREAM_H
#define GEN_STREAM_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef __CUSTOM_STREAM
class MT_OStream
diff --git a/intern/moto/include/MT_Transform.h b/intern/moto/include/MT_Transform.h
index f56927c525d..e774b125d0e 100644
--- a/intern/moto/include/MT_Transform.h
+++ b/intern/moto/include/MT_Transform.h
@@ -53,10 +53,6 @@
#ifndef MT_TRANSFORM_H
#define MT_TRANSFORM_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Point3.h"
#include "MT_Matrix3x3.h"
diff --git a/intern/moto/include/MT_Tuple2.h b/intern/moto/include/MT_Tuple2.h
index 696421fdc77..bb2ec67dc44 100755
--- a/intern/moto/include/MT_Tuple2.h
+++ b/intern/moto/include/MT_Tuple2.h
@@ -46,10 +46,6 @@
#ifndef MT_Tuple2_H
#define MT_Tuple2_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Stream.h"
#include "MT_Scalar.h"
diff --git a/intern/moto/include/MT_Tuple3.h b/intern/moto/include/MT_Tuple3.h
index c4cb14563fa..271e323aab5 100755
--- a/intern/moto/include/MT_Tuple3.h
+++ b/intern/moto/include/MT_Tuple3.h
@@ -46,10 +46,6 @@
#ifndef MT_TUPLE3_H
#define MT_TUPLE3_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Stream.h"
#include "MT_Scalar.h"
diff --git a/intern/moto/include/MT_Tuple4.h b/intern/moto/include/MT_Tuple4.h
index ce45d64f75b..9a484dbedde 100755
--- a/intern/moto/include/MT_Tuple4.h
+++ b/intern/moto/include/MT_Tuple4.h
@@ -46,10 +46,6 @@
#ifndef MT_TUPLE4_H
#define MT_TUPLE4_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "MT_Stream.h"
#include "MT_Scalar.h"
diff --git a/intern/moto/include/MT_Vector2.h b/intern/moto/include/MT_Vector2.h
index 343c7fe66c8..35748ce2b0d 100644
--- a/intern/moto/include/MT_Vector2.h
+++ b/intern/moto/include/MT_Vector2.h
@@ -46,10 +46,6 @@
#ifndef MT_VECTOR2_H
#define MT_VECTOR2_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <MT_assert.h>
#include "MT_Tuple2.h"
diff --git a/intern/moto/include/MT_Vector3.h b/intern/moto/include/MT_Vector3.h
index 7e95b767283..41291e915be 100644
--- a/intern/moto/include/MT_Vector3.h
+++ b/intern/moto/include/MT_Vector3.h
@@ -46,10 +46,6 @@
#ifndef MT_VECTOR3_H
#define MT_VECTOR3_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <MT_assert.h>
#include "MT_Tuple3.h"
diff --git a/intern/moto/include/MT_Vector4.h b/intern/moto/include/MT_Vector4.h
index bf80f5b6c19..fa91abf2a84 100644
--- a/intern/moto/include/MT_Vector4.h
+++ b/intern/moto/include/MT_Vector4.h
@@ -46,10 +46,6 @@
#ifndef MT_VECTOR4_H
#define MT_VECTOR4_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <MT_assert.h>
#include "MT_Tuple4.h"
diff --git a/intern/moto/include/MT_assert.h b/intern/moto/include/MT_assert.h
index 7d37f950f31..b9680c1e684 100644
--- a/intern/moto/include/MT_assert.h
+++ b/intern/moto/include/MT_assert.h
@@ -32,10 +32,6 @@
#ifndef MT_ASSERT_H
#define MT_ASSERT_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef MT_NDEBUG
#define MT_assert(predicate) ((void)0)
diff --git a/intern/moto/include/MT_random.h b/intern/moto/include/MT_random.h
index 41a01cf05e2..8a578fa7d09 100755
--- a/intern/moto/include/MT_random.h
+++ b/intern/moto/include/MT_random.h
@@ -32,10 +32,6 @@
#ifndef MT_RANDOM_H
#define MT_RANDOM_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include <limits.h>
#define MT_RAND_MAX ULONG_MAX
diff --git a/intern/moto/include/NM_Scalar.h b/intern/moto/include/NM_Scalar.h
index 33e5d477565..a15b187cab9 100644
--- a/intern/moto/include/NM_Scalar.h
+++ b/intern/moto/include/NM_Scalar.h
@@ -30,13 +30,8 @@
*/
#include <math.h>
-
#include <iostream>
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
template <class T>
class NM_Scalar {
public: