summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/angle/samples/angle/sample_util/win32/Win32_path_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/angle/samples/angle/sample_util/win32/Win32_path_utils.cpp')
-rw-r--r--chromium/third_party/angle/samples/angle/sample_util/win32/Win32_path_utils.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/chromium/third_party/angle/samples/angle/sample_util/win32/Win32_path_utils.cpp b/chromium/third_party/angle/samples/angle/sample_util/win32/Win32_path_utils.cpp
new file mode 100644
index 00000000000..6096aa20f7b
--- /dev/null
+++ b/chromium/third_party/angle/samples/angle/sample_util/win32/Win32_path_utils.cpp
@@ -0,0 +1,23 @@
+//
+// Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+
+#include "path_utils.h"
+#include <array>
+#include <windows.h>
+
+std::string GetExecutablePath()
+{
+ std::array<char, MAX_PATH> executableFileBuf;
+ DWORD executablePathLen = GetModuleFileNameA(NULL, executableFileBuf.data(), executableFileBuf.size());
+ return (executablePathLen > 0 ? std::string(executableFileBuf.data()) : "");
+}
+
+std::string GetExecutableDirectory()
+{
+ std::string executablePath = GetExecutablePath();
+ size_t lastPathSepLoc = executablePath.find_last_of("\\/");
+ return (lastPathSepLoc != std::string::npos) ? executablePath.substr(0, lastPathSepLoc) : "";
+}