| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-15 | video_core: Enforce -Wunused-function | ReinUsesLisp | |
| Stops us from merging code with unused functions in the future. If something is invoked behind conditionally evaluated code in a way that the language can't see it (e.g. preprocessor macros), the potentially unused function should use [[maybe_unused]]. | |||
| 2021-01-15 | vk_buffer_cache: Remove unused function | ReinUsesLisp | |
| 2021-01-15 | vulkan_common: Silence missing initializer warnings | ReinUsesLisp | |
| Silence warnings explicitly initializing all members on construction. | |||
| 2021-01-15 | vulkan_device: Enable shaderStorageImageMultisample conditionally | ReinUsesLisp | |
| Fix Vulkan initialization on ANV. | |||
| 2021-01-15 | astc: Increase integer encoded vector size | ReinUsesLisp | |
| Invalid ASTC textures seem to write more bytes here, increase the size to something that can't make us push out of bounds. | |||
| 2021-01-15 | astc: Return zero on out of bound bits | ReinUsesLisp | |
| Avoid out of bound reads on invalid ASTC textures. Games can bind invalid textures that make us read or write out of bounds. | |||
| 2021-01-14 | yuzu: Remove unused variables in Qt code | Lioncash | |
| 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-14 | Merge pull request #5343 from lioncash/qt6 | Morph | |
| configure_motion_touch: Migrate off QRegExp to QRegularExpression | |||
| 2021-01-13 | configure_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-13 | configure_motion_touch: Migrate off QRegExp to QRegularExpression | Lioncash | |
| 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-13 | Merge pull request #5330 from german77/regexerror | LC | |
| Fix IP validator error | |||
| 2021-01-13 | Merge pull request #5342 from lioncash/qt6 | bunnei | |
| yuzu: Migrate off of setMargin() to setContentsMargins() | |||
| 2021-01-13 | Fix IP validator error where the last octet produced an error if the value ↵ | german | |
| was higher than 199 | |||
| 2021-01-13 | yuzu: 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-13 | vulkan_device: Remove requirement on shaderStorageImageMultisample | ReinUsesLisp | |
| 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-13 | tests: Add unit tests for the GPU range tracking buffer container | ReinUsesLisp | |
| Due to how error prone the container design is, this commit adds unit tests for it. Some tests taken from here are based on bugs from using this buffer container in games, so if we ever break it in the future in a way that might harm games, the tests should fail. | |||
| 2021-01-13 | buffer_cache/buffer_base: Add a range tracking buffer container | ReinUsesLisp | |
| It keeps track of the modified CPU and GPU ranges on a CPU page granularity, notifying the given rasterizer about state changes in the tracking behavior of the buffer. Use a small vector optimization to store buffers smaller than 256 KiB locally instead of using free store memory allocations. | |||
| 2021-01-13 | cmake: Enforce -Werror=switch and -Werror=unused-variable | Morph | |
| 2021-01-12 | Merge pull request #5280 from FearlessTobi/port-5666 | bunnei | |
| Port citra-emu/citra#5666: "Rotate previous log file to "citra_log.txt.old"" | |||
| 2021-01-12 | Merge pull request #5311 from ReinUsesLisp/fence-wait | bunnei | |
| vk_fence_manager: Use timeline semaphores instead of spin waits | |||
| 2021-01-12 | common/tree: Convert defines over to templates | Lioncash | |
| Reworks the tree header to operate off of templates as opposed to a series of defines. This allows all tree facilities to obey namespacing rules, and also allows this code to be used within modules once compiler support is in place. This also gets rid to use a macro to define functions and structs for necessary data types. With templates, these will be generated when they're actually used, eliminating the need for the separate declaration. | |||
| 2021-01-12 | common/tree: Remove unused splay tree defines | Lioncash | |
| Makes for less code to take care of. | |||
| 2021-01-11 | common/parent_of_member: Replace TYPED_STORAGE define with template alias | Lioncash | |
| Provides the same construct, but makes it obey namespacing. | |||
| 2021-01-11 | hle: kernel: thread: Preserve thread wait reason for debugging only. | bunnei | |
| - This is decoupled from core functionality and used for debugging only. | |||
| 2021-01-11 | yuzu: debugger: wait_tree: Handle unknown ThreadState. | bunnei | |
| 2021-01-11 | hle: kernel: k_scheduler_lock: Fix shadowing errors. | bunnei | |
| 2021-01-11 | core: arm: arm_interface: Fix shadowing errors. | bunnei | |
| 2021-01-11 | core: hle: Add missing calls to MicroProfileOnThreadExit. | bunnei | |
| 2021-01-11 | core: hle: Integrate new KConditionVariable and KAddressArbiter implementations. | bunnei | |
| 2021-01-11 | core: hle: kernel: Update KAddressArbiter. | bunnei | |
| 2021-01-11 | core: hle: kernel: Update KConditionVariable. | bunnei | |
| 2021-01-11 | core: hle: kernel: Begin moving common SVC defintions to its own header. | bunnei | |
| 2021-01-11 | hle: kernel: Remove unnecessary AddressArbiter definition. | bunnei | |
| 2021-01-11 | common: common_funcs: Add R_UNLESS macro. | bunnei | |
| 2021-01-11 | hle: kernel: k_scheduler: Cleanup OnThreadPriorityChanged. | bunnei | |
| 2021-01-11 | hle: kernel: Rename thread "status" to "state". | bunnei | |
| 2021-01-11 | hle: 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-11 | core: hle: kernel: Add some useful functions for checking kernel addresses. | bunnei | |
| 2021-01-11 | core: hle: kernel: svc_types: Add type definitions for KAddressArbiter. | bunnei | |
| 2021-01-11 | common: Introduce useful tree structures. | bunnei | |
| 2021-01-11 | core: hle: kernel: Update KSynchronizationObject. | bunnei | |
| 2021-01-11 | core: hle: kernel: Begin moving common SVC results to its own header. | bunnei | |
| 2021-01-11 | hle: service: nfp: Remove incorrect signaling behavior in GetDeviceState. | bunnei | |
| 2021-01-10 | Merge remote-tracking branch 'upstream/master' into int-flags | Levi | |
| 2021-01-10 | Merge pull request #5229 from Morph1984/fullscreen-opt | bunnei | |
| yuzu/main: Add basic command line arguments | |||
| 2021-01-10 | Merge pull request #5324 from Morph1984/docked-default | LC | |
| config: Enable docked mode by default | |||
| 2021-01-10 | Merge pull request #5312 from german77/overclockenabled | bunnei | |
| apm: Stub IsCpuOverclockEnabled | |||
| 2021-01-10 | config: Enable docked mode by default | Morph | |
| 2021-01-10 | cmake: Enforce C4101 | Morph | |
| This matches GCC's -Wunused-variable | |||
| 2021-01-10 | yuzu_cmd: Silence unreferenced local variable warning | Morph | |
