dolphin/Source
Silent 6bfa4fa643
LogWidget: Use FixedSizeQueue for a log messages buffer
Messages buffer is intended to be of a fixed capacity (MAX_LOG_LINES),
which cannot be achieved by std::queue unless we manually pop() extra elements.
std::queue uses std::deque internally which most likely results in allocations performed continuously.
FixedSizeQueue keeps a single buffer during its entire lifetime, avoiding any allocations except the ones
performed by stored objects.
2019-08-31 21:18:07 +02:00
..
Android Merge pull request #8190 from JosJuice/android-init 2019-08-21 10:14:52 -07:00
Core LogWidget: Use FixedSizeQueue for a log messages buffer 2019-08-31 21:18:07 +02:00
DSPSpy
DSPTool VideoCommon/OnScreenDisplay: Take Message's std::string parameter by value 2019-07-28 23:00:58 -04:00
PCH CMake/Windows: Add PCH support 2019-05-15 19:28:04 +02:00
UnitTests FixedSizeQueue: Bugfixes and improvements 2019-08-31 21:18:07 +02:00
VSProps Explicitly enable conformance mode, and remove /Zc:inline because it's a default now 2019-08-15 17:47:55 +02:00
.clang-format clang-format: revert 'AfterCaseLabel' setting 2019-05-23 00:42:42 -04:00
CMakeLists.txt CMake/Windows: Add PCH support 2019-05-15 19:28:04 +02:00
dolphin-emu.sln Move Updater to WinUpdater 2019-04-10 10:46:49 +02:00