Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-11 | Merge pull request #5333 from lioncash/define | bunnei | |
common/parent_of_member: Replace TYPED_STORAGE define with template alias | |||
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 | Merge pull request #5266 from bunnei/kernel-synch | bunnei | |
Rewrite KSynchronizationObject, KConditonVariable, and KAddressArbiter | |||
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 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-09 | Merge pull request #5323 from Morph1984/enforce-c4101 | bunnei | |
cmake: Enforce C4101 | |||
2021-01-10 | cmake: Enforce C4101 | Morph | |
This matches GCC's -Wunused-variable | |||
2021-01-10 | yuzu_cmd: Silence unreferenced local variable warning | Morph | |
2021-01-09 | Merge pull request #5320 from ReinUsesLisp/div-ceil-type | LC | |
common/div_ceil: Return numerator type | |||
2021-01-09 | Merge pull request #5322 from Morph1984/resolve-c4062-msvc | LC | |
general: Resolve C4062 warnings on MSVC | |||
2021-01-09 | general: Resolve C4062 warnings on MSVC | Morph | |
2021-01-09 | common/div_ceil: Return numerator type | ReinUsesLisp | |
Fixes instances where DivCeil(u32, u64) would surprisingly return u64, instead of the more natural u32. | |||
2021-01-09 | Merge pull request #5319 from ReinUsesLisp/msvc-warnings | Rodrigo Locatti | |
cmake: Enforce C4062, C4265, C4388, and C5038 | |||
2021-01-09 | cmake: Enforce C4062, C4265, C4388, and C5038 | ReinUsesLisp | |
This should match some warnings we treat as errors on gcc and clang, caching bugs early and reducing the number of instances where we have to edit commits to make CI happy when developing from Windows. | |||
2021-01-09 | file_sys/registered_cache: Silence virtual functions without override warnings | ReinUsesLisp | |
2021-01-08 | core: Silence unhandled enum in switch warnings | ReinUsesLisp | |
2021-01-08 | tests/ring_buffer: Silence signed/unsigned mismatch warnings | ReinUsesLisp | |
2021-01-08 | Merge pull request #5231 from ReinUsesLisp/dyn-bindings | bunnei | |
renderer_vulkan/fixed_pipeline_state: Move enabled bindings to static state | |||
2021-01-08 | Stub IsCpuOverclockEnabled | german | |
2021-01-08 | Merge pull request #5300 from JeremyStarTM/patch-1 | bunnei | |
Removed MacOS build link | |||
2021-01-08 | vk_fence_manager: Use timeline semaphores instead of spin waits | ReinUsesLisp | |
With timeline semaphores we can avoid creating objects. Instead of creating an event, grab the current tick from the scheduler and flush the current command buffer. When the fence has to be queried/waited, we can do so against the master semaphore instead of spinning on an event. If Vulkan supported NVN like events or fences, we could signal from the command buffer and wait for that without splitting things in two separate command buffers. | |||
2021-01-07 | Merge pull request #5310 from lat9nq/fix-disable-web-service | bunnei | |
CMakeLists: Disable YUZU_ENABLE_BOXCAT if ENABLE_WEB_SERVICE is disabled | |||
2021-01-07 | CMakeLists: Disable YUZU_ENABLE_BOXCAT if ENABLE_WEB_SERVICE is disabled | lat9nq | |
Boxcat is a web service but is still enabled if ENABLE_WEB_SERVICE is disabled during the CMake stage, which causes compilation issues with either missing headers or missing libraries. This disables YUZU_ENABLE_BOXCAT regardless of the input if ENABLE_WEB_SERVICE is disabled. | |||
2021-01-07 | Merge pull request #5237 from ameerj/nvdec-syncpt | bunnei | |
nvdec: Incorporate syncpoint manager | |||
2021-01-07 | remove inaccurate reference | Ameer J | |
Co-authored-by: LC <mathew1800@gmail.com> | |||
2021-01-07 | fix for nvdec disabled, cleanup host1x | ameerj | |