mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
C++17ification! - Filesystem interaction now uses std::filesystem::path. - Usage of const char*, std::string have been changed to std::string_view where appropriate. - Usage of printf-style functions changed to use fmt.
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2020 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include "xenia/gpu/gpu_flags.h"
|
|
|
|
DEFINE_path(trace_gpu_prefix, "scratch/gpu/",
|
|
"Prefix path for GPU trace files.", "GPU");
|
|
DEFINE_bool(trace_gpu_stream, false, "Trace all GPU packets.", "GPU");
|
|
|
|
DEFINE_path(
|
|
dump_shaders, "",
|
|
"For shader debugging, path to dump GPU shaders to as they are compiled.",
|
|
"GPU");
|
|
|
|
DEFINE_bool(vsync, true, "Enable VSYNC.", "GPU");
|
|
|
|
DEFINE_bool(
|
|
gpu_allow_invalid_fetch_constants, false,
|
|
"Allow texture and vertex fetch constants with invalid type - generally "
|
|
"unsafe because the constant may contain completely invalid values, but "
|
|
"may be used to bypass fetch constant type errors in certain games until "
|
|
"the real reason why they're invalid is found.",
|
|
"GPU");
|