aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkMutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/SkMutex.h')
-rw-r--r--include/core/SkMutex.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/core/SkMutex.h b/include/core/SkMutex.h
new file mode 100644
index 0000000000..7dbe957d8b
--- /dev/null
+++ b/include/core/SkMutex.h
@@ -0,0 +1,13 @@
+#ifndef SkMutex_DEFINED
+#define SkMutex_DEFINED
+
+// This file is not part of the public Skia API.
+#include "SkTypes.h"
+
+#if defined(SK_BUILD_FOR_WIN)
+ #include "../ports/SkMutex_win.h"
+#else
+ #include "../ports/SkMutex_pthread.h"
+#endif
+
+#endif//SkMutex_DEFINED