summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-15vk_buffer_cache: Remove unused functionReinUsesLisp
2021-01-14Merge pull request #5302 from lat9nq/appimage-updateLC
ci/linux: Make Mainline AppImages updateable
2021-01-14Merge pull request #5345 from lioncash/unused-varbunnei
yuzu: Remove unused variables in Qt code
2021-01-14yuzu: Remove unused variables in Qt codeLioncash
Removes two unused variables in out Qt code. In this case the removal of these two results in less allocations, given std::map allocates on the heap.
2021-01-14Merge pull request #5343 from lioncash/qt6Morph
configure_motion_touch: Migrate off QRegExp to QRegularExpression
2021-01-14Merge pull request #5344 from lioncash/moveMorph
configure_motion_touch: Prevent use after move in ApplyConfiguration()
2021-01-13configure_motion_touch: Prevent use after move in ApplyConfiguration()Lioncash
touch_engine was being compared against after being moved into the setter for the engine, so this comparison wouldn't behave properly.
2021-01-13configure_motion_touch: Migrate off QRegExp to QRegularExpressionLioncash
QRegularExpression was introduced in Qt 5 as a better replacement for QRegExp. In Qt 6.0 QRegExp is removed entirely. To remain forward compatible with Qt 6.0, we can transition over to using QRegularExpression.
2021-01-13Merge pull request #5330 from german77/regexerrorLC
Fix IP validator error
2021-01-13Merge pull request #5342 from lioncash/qt6bunnei
yuzu: Migrate off of setMargin() to setContentsMargins()
2021-01-13Fix IP validator error where the last octet produced an error if the value ↵german
was higher than 199
2021-01-13yuzu: Migrate off of setMargin() to setContentsMargins()Lioncash
setMargin() has been deprecated since Qt 5, and replaced with setContentsMargins(). We can move over to setContentsMargins() to stay forward-compatible with Qt 6.0.
2021-01-13Merge pull request #5341 from ReinUsesLisp/anv-storageMorph
vulkan_device: Remove requirement on shaderStorageImageMultisample
2021-01-13vulkan_device: Remove requirement on shaderStorageImageMultisampleReinUsesLisp
yuzu doesn't currently emulate MS image stores. Requiring this makes no sense for now. Fixes ANV not booting any games on Vulkan.
2021-01-13Merge pull request #5340 from Morph1984/gcc-warningsLC
cmake: Enforce -Werror=switch and -Werror=unused-variable
2021-01-13cmake: Enforce -Werror=switch and -Werror=unused-variableMorph
2021-01-12Merge pull request #5280 from FearlessTobi/port-5666bunnei
Port citra-emu/citra#5666: "Rotate previous log file to "citra_log.txt.old""
2021-01-12Merge pull request #5311 from ReinUsesLisp/fence-waitbunnei
vk_fence_manager: Use timeline semaphores instead of spin waits
2021-01-11Merge pull request #5333 from lioncash/definebunnei
common/parent_of_member: Replace TYPED_STORAGE define with template alias
2021-01-11common/parent_of_member: Replace TYPED_STORAGE define with template aliasLioncash
Provides the same construct, but makes it obey namespacing.
2021-01-11Merge pull request #5266 from bunnei/kernel-synchbunnei
Rewrite KSynchronizationObject, KConditonVariable, and KAddressArbiter
2021-01-11hle: kernel: thread: Preserve thread wait reason for debugging only.bunnei
- This is decoupled from core functionality and used for debugging only.
2021-01-11yuzu: debugger: wait_tree: Handle unknown ThreadState.bunnei
2021-01-11hle: kernel: k_scheduler_lock: Fix shadowing errors.bunnei
2021-01-11core: arm: arm_interface: Fix shadowing errors.bunnei
2021-01-11core: hle: Add missing calls to MicroProfileOnThreadExit.bunnei
2021-01-11core: hle: Integrate new KConditionVariable and KAddressArbiter implementations.bunnei
2021-01-11core: hle: kernel: Update KAddressArbiter.bunnei
2021-01-11core: hle: kernel: Update KConditionVariable.bunnei
2021-01-11core: hle: kernel: Begin moving common SVC defintions to its own header.bunnei
2021-01-11hle: kernel: Remove unnecessary AddressArbiter definition.bunnei
2021-01-11common: common_funcs: Add R_UNLESS macro.bunnei
2021-01-11hle: kernel: k_scheduler: Cleanup OnThreadPriorityChanged.bunnei
2021-01-11hle: kernel: Rename thread "status" to "state".bunnei
2021-01-11hle: kernel: thread: Replace ThreadStatus/ThreadSchedStatus with a single ↵bunnei
ThreadState. - This is how the real kernel works, and is more accurate and simpler.
2021-01-11core: hle: kernel: Add some useful functions for checking kernel addresses.bunnei
2021-01-11core: hle: kernel: svc_types: Add type definitions for KAddressArbiter.bunnei
2021-01-11common: Introduce useful tree structures.bunnei
2021-01-11core: hle: kernel: Update KSynchronizationObject.bunnei
2021-01-11core: hle: kernel: Begin moving common SVC results to its own header.bunnei
2021-01-11hle: service: nfp: Remove incorrect signaling behavior in GetDeviceState.bunnei
2021-01-10Merge pull request #5229 from Morph1984/fullscreen-optbunnei
yuzu/main: Add basic command line arguments
2021-01-10Merge pull request #5324 from Morph1984/docked-defaultLC
config: Enable docked mode by default
2021-01-10Merge pull request #5312 from german77/overclockenabledbunnei
apm: Stub IsCpuOverclockEnabled
2021-01-10config: Enable docked mode by defaultMorph
2021-01-09Merge pull request #5323 from Morph1984/enforce-c4101bunnei
cmake: Enforce C4101
2021-01-10cmake: Enforce C4101Morph
This matches GCC's -Wunused-variable
2021-01-10yuzu_cmd: Silence unreferenced local variable warningMorph
2021-01-09Merge pull request #5320 from ReinUsesLisp/div-ceil-typeLC
common/div_ceil: Return numerator type
2021-01-09Merge pull request #5322 from Morph1984/resolve-c4062-msvcLC
general: Resolve C4062 warnings on MSVC