2021-01-21 04:01:05 +04:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
|
|
|
|
#include "common/file_util.h"
|
2021-01-21 05:42:22 +04:00
|
|
|
#include "common/nvidia_flags.h"
|
2021-01-21 04:01:05 +04:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
void ConfigureNvidiaEnvironmentFlags() {
|
|
|
|
#ifdef _WIN32
|
|
|
|
const std::string shader_path = Common::FS::SanitizePath(
|
2021-01-21 08:32:21 +04:00
|
|
|
fmt::format("{}/nvidia/", Common::FS::GetUserPath(Common::FS::UserPath::ShaderDir)));
|
|
|
|
const std::string windows_path =
|
|
|
|
Common::FS::SanitizePath(shader_path, Common::FS::DirectorySeparator::BackwardSlash);
|
|
|
|
void(Common::FS::CreateFullPath(shader_path + '/'));
|
|
|
|
void(_putenv(fmt::format("__GL_SHADER_DISK_CACHE_PATH={}", windows_path).c_str()));
|
2021-01-21 04:01:05 +04:00
|
|
|
void(_putenv("__GL_SHADER_DISK_CACHE_SKIP_CLEANUP=1"));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Common
|