summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/lib/osdlib_uwp.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-11-11 16:20:19 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-11-11 16:20:19 +0100
commit172cadfd3ef97bb3c9dac695d1a0459393f5df88 (patch)
tree7b6197b51a992ad1b9abe33986a2c409bbe65fa6 /src/osd/modules/lib/osdlib_uwp.cpp
parent8dfbb3e6d1ce57517791895fc404c8931b56ae9b (diff)
removed not used macros (nw)
Diffstat (limited to 'src/osd/modules/lib/osdlib_uwp.cpp')
-rw-r--r--src/osd/modules/lib/osdlib_uwp.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/osd/modules/lib/osdlib_uwp.cpp b/src/osd/modules/lib/osdlib_uwp.cpp
index 2712e499777..379829012dc 100644
--- a/src/osd/modules/lib/osdlib_uwp.cpp
+++ b/src/osd/modules/lib/osdlib_uwp.cpp
@@ -33,26 +33,6 @@ using namespace Windows::ApplicationModel::DataTransfer;
using namespace Windows::Foundation;
#include <map>
-//============================================================
-// MACROS
-//============================================================
-
-// presumed size of a page of memory
-#define PAGE_SIZE 4096
-
-// align allocations to start or end of the page?
-#define GUARD_ALIGN_START 0
-
-#if defined(__BIGGEST_ALIGNMENT__)
-#define MAX_ALIGNMENT __BIGGEST_ALIGNMENT__
-#elif defined(__AVX__)
-#define MAX_ALIGNMENT 32
-#elif defined(__SSE__) || defined(__x86_64__) || defined(_M_X64)
-#define MAX_ALIGNMENT 16
-#else
-#define MAX_ALIGNMENT sizeof(int64_t)
-#endif
-
//============================================================
// GLOBAL VARIABLES