dolphin/Source/Core/DolphinQt/Config/Graphics
Lioncash fef1b84f0a DolphinQt: Replace QStringLiteral with alternatives where applicable
QStringLiterals generate a buffer so that during runtime there's very
little cost to constructing a QString. However, this also means that
duplicated strings cannot be optimized out into a single entry that gets
referenced everywhere, taking up space in the binary.

Rather than use QStringLiteral(""), we can just use QString{} (the
default constructor) to signify the empty string. This gets rid of an
unnecessary string buffer from being created, saving a tiny bit of
space.

While we're at it, we can just use the character overloads of particular
functions when they're available instead of using a QString overload.
The characters in this case are Latin-1 to begin with, so we can just
specify the characters as QLatin1Char instances to use those overloads.
These will automatically convert to QChar if needed, so this is safe.
2019-07-30 09:06:03 -04:00
..
AdvancedWidget.cpp DolphinQt: Add the dumping bitrate setting to the graphics config 2019-07-18 12:20:21 +02:00
AdvancedWidget.h DolphinQt: Add the dumping bitrate setting to the graphics config 2019-07-18 12:20:21 +02:00
EnhancementsWidget.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
EnhancementsWidget.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GeneralWidget.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
GeneralWidget.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsBool.cpp Qt: Switch to QSignalBlocker for scoped signal blocking 2018-08-23 07:11:52 -04:00
GraphicsBool.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsChoice.cpp Qt: Switch to QSignalBlocker for scoped signal blocking 2018-08-23 07:11:52 -04:00
GraphicsChoice.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsInteger.cpp DolphinQt: Add the dumping bitrate setting to the graphics config 2019-07-18 12:20:21 +02:00
GraphicsInteger.h DolphinQt: Add the dumping bitrate setting to the graphics config 2019-07-18 12:20:21 +02:00
GraphicsRadio.cpp Qt: Switch to QSignalBlocker for scoped signal blocking 2018-08-23 07:11:52 -04:00
GraphicsRadio.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsSlider.cpp Qt: Switch to QSignalBlocker for scoped signal blocking 2018-08-23 07:11:52 -04:00
GraphicsSlider.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsWidget.cpp Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsWidget.h Move DolphinQt2 to DolphinQt 2018-07-07 00:48:38 +02:00
GraphicsWindow.cpp Qt/MainWindow: Lazy initialize child windows 2018-10-14 21:46:59 +10:00
GraphicsWindow.h Qt/MainWindow: Lazy initialize child windows 2018-10-14 21:46:59 +10:00
HacksWidget.cpp DolphinQt: Replace QStringLiteral with alternatives where applicable 2019-07-30 09:06:03 -04:00
HacksWidget.h Config: Add an option to skip saving texture cache to save state 2019-07-24 05:19:22 +10:00
PostProcessingConfigWindow.cpp Move most backend functionality to VideoCommon 2019-02-19 16:57:54 +10:00
PostProcessingConfigWindow.h Move most backend functionality to VideoCommon 2019-02-19 16:57:54 +10:00
SoftwareRendererWidget.cpp Disallow changing the backend when running when software renderer is currently selected 2019-06-08 16:25:27 -07:00
SoftwareRendererWidget.h Disallow changing the backend when running when software renderer is currently selected 2019-06-08 16:25:27 -07:00