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 'source/blender/bmesh/intern/bmesh_inline.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_inline.c72
1 files changed, 72 insertions, 0 deletions
diff --git a/source/blender/bmesh/intern/bmesh_inline.c b/source/blender/bmesh/intern/bmesh_inline.c
new file mode 100644
index 00000000000..d53c42a336e
--- /dev/null
+++ b/source/blender/bmesh/intern/bmesh_inline.c
@@ -0,0 +1,72 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Contributor(s): Joseph Eagar, Geoffrey Bantle, Campbell Barton
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/bmesh/intern/bmesh_inline.c
+ * \ingroup bmesh
+ *
+ * BM Inline functions.
+ */
+
+#ifndef BM_INLINE_C
+#define BM_INLINE_C
+
+#include "bmesh.h"
+
+BM_INLINE char BM_TestHFlag(const void *element, const char hflag)
+{
+ return ((const BMHeader *)element)->hflag & hflag;
+}
+
+BM_INLINE void BM_SetHFlag(void *element, const char hflag)
+{
+ ((BMHeader *)element)->hflag |= hflag;
+}
+
+BM_INLINE void BM_ClearHFlag(void *element, const char hflag)
+{
+ ((BMHeader *)element)->hflag &= ~hflag;
+}
+
+BM_INLINE void BM_ToggleHFlag(void *element, const char hflag)
+{
+ ((BMHeader *)element)->hflag ^= hflag;
+}
+
+BM_INLINE void BM_MergeHFlag(void *element_a, void *element_b)
+{
+ ((BMHeader *)element_a)->hflag =
+ ((BMHeader *)element_b)->hflag = (((BMHeader *)element_a)->hflag |
+ ((BMHeader *)element_b)->hflag);
+}
+
+BM_INLINE void BM_SetIndex(void *element, const int index)
+{
+ ((BMHeader *)element)->index = index;
+}
+
+BM_INLINE int BM_GetIndex(const void *element)
+{
+ return ((BMHeader *)element)->index;
+}
+
+#endif /*BM_INLINE_C*/
+