summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2021-01-09general: Resolve C4062 warnings on MSVCMorph
2021-01-09common/div_ceil: Return numerator typeReinUsesLisp
Fixes instances where DivCeil(u32, u64) would surprisingly return u64, instead of the more natural u32.
2021-01-09Merge pull request #5319 from ReinUsesLisp/msvc-warningsRodrigo Locatti
cmake: Enforce C4062, C4265, C4388, and C5038
2021-01-09cmake: Enforce C4062, C4265, C4388, and C5038ReinUsesLisp
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-09file_sys/registered_cache: Silence virtual functions without override warningsReinUsesLisp
2021-01-08core: Silence unhandled enum in switch warningsReinUsesLisp
2021-01-08tests/ring_buffer: Silence signed/unsigned mismatch warningsReinUsesLisp
2021-01-08Merge pull request #5231 from ReinUsesLisp/dyn-bindingsbunnei
renderer_vulkan/fixed_pipeline_state: Move enabled bindings to static state
2021-01-08Stub IsCpuOverclockEnabledgerman
2021-01-08Merge pull request #5300 from JeremyStarTM/patch-1bunnei
Removed MacOS build link
2021-01-07Merge pull request #5310 from lat9nq/fix-disable-web-servicebunnei
CMakeLists: Disable YUZU_ENABLE_BOXCAT if ENABLE_WEB_SERVICE is disabled
2021-01-07CMakeLists: Disable YUZU_ENABLE_BOXCAT if ENABLE_WEB_SERVICE is disabledlat9nq
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-07Merge pull request #5237 from ameerj/nvdec-syncptbunnei
nvdec: Incorporate syncpoint manager
2021-01-07remove inaccurate referenceAmeer J
Co-authored-by: LC <mathew1800@gmail.com>
2021-01-07fix for nvdec disabled, cleanup host1xameerj
2021-01-07nvdec syncpt incorporationameerj
laying the groundwork for async gpu, although this does not fully implement async nvdec operations
2021-01-08Merge pull request #5306 from MerryMage/ignore-library-OpenMorph
vulkan_library: Common::DynamicLibrary::Open is [[nodiscard]]
2021-01-07vulkan_library: Common::DynamicLibrary::Open is [[nodiscard]]MerryMage
Ignore the return value on __APPLE__ systems as well
2021-01-08Merge pull request #5305 from MerryMage/page_shiftMorph
texture_cache: Replace PAGE_SHIFT with PAGE_BITS
2021-01-07texture_cache: Replace PAGE_SHIFT with PAGE_BITSMerryMage
PAGE_SHIFT is a #define in system headers that leaks into user code on some systems
2021-01-06Removed MacOS build linkJeremyStarTM
The MacOS build link was removed in the README.md because it no longer exist.
2021-01-06Merge pull request #5288 from ReinUsesLisp/workaround-garbageMorph
gl_texture_cache: Avoid format views on Intel and AMD
2021-01-05Merge pull request #5250 from lat9nq/appimagebunnei
ci/linux: Build an AppImage
2021-01-05Merge pull request #5293 from ReinUsesLisp/return-valuesbunnei
core: Enforce C4715 (not all control paths return a value)
2021-01-05Merge pull request #5289 from ReinUsesLisp/vulkan-devicebunnei
vulkan_common: Move device abstraction to the common directory and allow surfaceless devices
2021-01-05core: Enforce C4715 (not all control paths return a value)ReinUsesLisp
2021-01-05core: Silence warnings when compiling without assertsReinUsesLisp