aboutsummaryrefslogtreecommitdiff
path: root/source/Irrlicht/SoftwareDriver2_compile_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Irrlicht/SoftwareDriver2_compile_config.h')
-rw-r--r--source/Irrlicht/SoftwareDriver2_compile_config.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/source/Irrlicht/SoftwareDriver2_compile_config.h b/source/Irrlicht/SoftwareDriver2_compile_config.h
deleted file mode 100644
index 8f46869..0000000
--- a/source/Irrlicht/SoftwareDriver2_compile_config.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (C) 2002-2012 Nikolaus Gebhardt / Thomas Alten
-// This file is part of the "Irrlicht Engine".
-// For conditions of distribution and use, see copyright notice in irrlicht.h
-
-#ifndef __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
-#define __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
-
-#include "IrrCompileConfig.h"
-
-#ifndef REALINLINE
-#ifdef _MSC_VER
-#define REALINLINE __forceinline
-#else
-#define REALINLINE inline
-#endif
-#endif
-
-//! Size of a static C-style array.
-#define array_size(_arr) ((sizeof(_arr)/sizeof(*_arr)))
-
-//! Compiler Align
-#if defined(_MSC_VER)
-#define ALIGN(x) __declspec(align(x))
-#elif defined(__GNUC__)
-#define ALIGN(x) __attribute__ ((aligned(x)))
-#else
-#define ALIGN(x)
-#endif
-
-#endif // __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__