Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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 | |
2021-01-07 | nvdec syncpt incorporation | ameerj | |
laying the groundwork for async gpu, although this does not fully implement async nvdec operations | |||
2021-01-08 | Merge pull request #5306 from MerryMage/ignore-library-Open | Morph | |
vulkan_library: Common::DynamicLibrary::Open is [[nodiscard]] | |||
2021-01-07 | vulkan_library: Common::DynamicLibrary::Open is [[nodiscard]] | MerryMage | |
Ignore the return value on __APPLE__ systems as well | |||
2021-01-08 | Merge pull request #5305 from MerryMage/page_shift | Morph | |
texture_cache: Replace PAGE_SHIFT with PAGE_BITS | |||
2021-01-07 | texture_cache: Replace PAGE_SHIFT with PAGE_BITS | MerryMage | |
PAGE_SHIFT is a #define in system headers that leaks into user code on some systems | |||
2021-01-06 | Removed MacOS build link | JeremyStarTM | |
The MacOS build link was removed in the README.md because it no longer exist. | |||
2021-01-06 | Merge pull request #5288 from ReinUsesLisp/workaround-garbage | Morph | |
gl_texture_cache: Avoid format views on Intel and AMD | |||
2021-01-05 | Merge pull request #5250 from lat9nq/appimage | bunnei | |
ci/linux: Build an AppImage | |||
2021-01-05 | Merge pull request #5293 from ReinUsesLisp/return-values | bunnei | |
core: Enforce C4715 (not all control paths return a value) | |||
2021-01-05 | Merge pull request #5289 from ReinUsesLisp/vulkan-device | bunnei | |
vulkan_common: Move device abstraction to the common directory and allow surfaceless devices | |||
2021-01-05 | core: Enforce C4715 (not all control paths return a value) | ReinUsesLisp | |
2021-01-05 | core: Silence warnings when compiling without asserts | ReinUsesLisp | |
2021-01-04 | Merge pull request #5292 from ReinUsesLisp/empty-set | LC | |
vk_rasterizer: Skip binding empty descriptor sets on compute | |||
2021-01-04 | Merge pull request #5261 from gal20/hide_mouse_patch | bunnei | |
yuzu/main: Fix 'Hide mouse on inactivity' and port citra-emu/citra#5476 | |||
2021-01-04 | vk_rasterizer: Skip binding empty descriptor sets on compute | ReinUsesLisp | |
Fixes unit tests where compute shaders had no descriptors in the set, making Vulkan drivers crash when binding an empty set. | |||
2021-01-04 | Merge pull request #5284 from ameerj/bufferq-oor-fix | Morph | |
buffer_queue: Fix data race by protecting queue_sequence access | |||
2021-01-04 | buffer_queue: Protect queue_sequence list access with a mutex | ameerj | |
fixes a data race as this is an unprotected variable manipulated by multiple threads | |||
2021-01-04 | vulkan_device: Allow creating a device without surface | ReinUsesLisp | |
2021-01-04 | renderer_vulkan/nsight_aftermath_tracker: Move to vulkan_common | ReinUsesLisp | |
2021-01-04 | renderer_vulkan: Move device abstraction to vulkan_common | ReinUsesLisp | |
2021-01-04 | Merge pull request #5286 from ReinUsesLisp/rename-vk-device | Rodrigo Locatti | |
renderer_vulkan: Rename VKDevice to Device | |||
2021-01-04 | gl_texture_cache: Avoid format views on Intel and AMD | ReinUsesLisp | |
Intel and AMD proprietary drivers are incapable of rendering to texture views of different formats than the original texture. Avoid creating these at a cache level. This will consume more memory, emulating them with copies. | |||
2021-01-04 | gl_texture_cache: Create base images with sRGB | ReinUsesLisp | |
This breaks accelerated decoders trying to imageStore into images with sRGB. The decoders are currently disabled so this won't cause issues at runtime. | |||
2021-01-03 | Merge pull request #5285 from lioncash/error-str | Rodrigo Locatti | |
main: Resolve error string not displaying |