yuzu-android/src
Kyle K 75bf2c20eb Update some files with Qt 5.15.2 best practices in mind
There was some discussion about updating to Qt6 and I figured I would
work on some smaller parts. For Windows platform the WinMain function has moved
from the Qt5::WinMain to a new one called Qt6::EntryPointPrivate

Also Qt5 supports versionless CMake targets
https://www.qt.io/blog/versionless-cmake-targets-qt-5.15

These other changes in this commit are to support Qt6, but in ways that don't mess with Qt5.

src/yuzu/bootmanager.cpp: Qt6 complains about not being able to know to use QPoint or QPointF, picking QPoint
src/yuzu/bootmanager.h: Qt6 prefers that QStringList.h be included rather than an empty class definition
src/yuzu/configuration/configure_system.cpp: toULongLong intends to return unsigned 64 bit integer, but
   Settings::values.rng_seed is only 32 bits wide
src/yuzu/game_list.cpp: Qt6 returns a different datatype for QStringList.length than Qt5,
   it used to be int, but in Qt6 its now qsizetype
src/yuzu/loading_screen.cpp: Qt5's for QStyleOption.init say to switch to initFrom.
   The QStyleOption.init doesn't exist in Qt6
src/yuzu/main.cpp: Another QPointer and QStringList.size, lets standardize on size()
2022-05-29 09:21:52 -07:00
..
audio_core general: Convert source file copyright comments over to SPDX 2022-04-23 05:55:32 -04:00
common VideoCore: Add option to dump the macros. 2022-05-08 21:37:34 -04:00
core service: hid: Fix motion refresh rate 2022-05-06 11:13:49 -05:00
input_common Merge pull request #8272 from german77/stick_range 2022-05-03 14:36:39 -07:00
shader_recompiler GCC 12 fixes 2022-04-28 16:50:34 -04:00
tests chore: add missing SPDX tags 2022-04-28 18:24:11 +02:00
video_core Merge pull request #8314 from liamwhite/gl-flip-2 2022-05-11 17:51:18 -04:00
web_service general: Convert source file copyright comments over to SPDX 2022-04-23 05:55:32 -04:00
yuzu Update some files with Qt 5.15.2 best practices in mind 2022-05-29 09:21:52 -07:00
yuzu_cmd general: Convert source file copyright comments over to SPDX 2022-04-23 05:55:32 -04:00
.clang-format
CMakeLists.txt CMakeLists: Enforce C4505 and C5245 2022-04-07 23:00:04 -04:00