dolphin-emulator/Source/Core
David Korth d660aba20f VolumeVerifier.cpp: Use arrays of string_view objects instead of strings.
string_view is a thin wrapper around C strings, so it's more efficient
for constant strings than C++ strings.

The unordered_set<> also adds extra runtime overhead. For small arrays,
a simple linear search works. For larger arrays, std::binary_search()
works better than linear but without the unordered_set<> overhead.

ShouldBeDualLayer(): Removed a duplicate "SK8X52" entry.
2019-12-29 23:42:55 -05:00
..
AudioCommon Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
Common Compile fixes for Windows-on-ARM64 2019-12-28 19:20:41 +10:00
Core Compile fixes for Windows-on-ARM64 2019-12-28 19:20:41 +10:00
DiscIO VolumeVerifier.cpp: Use arrays of string_view objects instead of strings. 2019-12-29 23:42:55 -05:00
DolphinNoGUI Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
DolphinQt Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
InputCommon Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
MacUpdater Reformat repo to clang-format 7.0 rules 2019-05-06 18:48:04 +00:00
UICommon Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
UpdaterCommon Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
VideoBackends Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
VideoCommon Compile fixes for Windows-on-ARM64 2019-12-28 19:20:41 +10:00
WinUpdater Add an ARM64 target to Visual Studio projects 2019-12-28 19:20:41 +10:00
CMakeLists.txt WinUpdater: Add CMakeLists.txt 2019-05-08 23:59:04 +02:00