Age | Commit message (Collapse) | Author |
|
This reverts #4713. The implementation in that PR is not accurate.
It does not reflect the behavior seen in hardware.
|
|
vk_graphics_pipeline: Fix narrowing conversion on MSVC
|
|
|
|
video_core: Silence the remaining gcc warnings and enforce them
|
|
vk_texture_cache: Support image store on sRGB images with VkImageViewUsageCreateInfo
|
|
vfs_real: When moving files or directories, don't assume file opening will succeed
|
|
VkImageViewUsageCreateInfo
Vulkan 1.0 didn't support creating sRGB image views on an ABGR8 VkImage
with storage usage bits. VK_KHR_maintenance2 addressed this allowing to
reduce the usage bits on a VkImageView.
To allow image store on non-sRGB image views when the VkImage is created
with sRGB, always create VkImages without sRGB and add the sRGB format
on the view.
|
|
vulkan_device: Lift VK_EXT_extended_dynamic_state blacklist on RDNA
|
|
It seems to be safe to use this on new drivers.
|
|
|
|
vk_pipeline_cache: Properly bypass VertexA shaders
|
|
host_shaders/cmake: Pass --quiet to glslang to keep it quiet
|
|
Silences noisy builds on toolchains.
|
|
|
|
hle: service: am: Stub ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero.
|
|
|
|
|
|
|
|
succeed
Found this via a warning, but it's a substantive fix.
Since this is only for a cache, it should be safe to silently drop the
entry if opening fails. I think.
|
|
|
|
sdl_impl: Set the maximum vibration duration to 1 second
|
|
|
|
nsight_aftermath_tracker: Fix build issues when enabled
|
|
Fix "message(ERROR ..." to "message(FATAL_ERROR ..." to properly stop
cmake when Nsight Aftermath can't be configured.
|
|
Fixes a bunch of build errors when Nsight Aftermath is properly enabled.
|
|
lbl: Implement most of lbl
|
|
The VertexA stage is not yet implemented, but Vulkan is adding its
descriptors, causing a discrepancy in the pushed descriptors and the
template. This generally ends up in a driver side crash.
Bypass the VertexA stage for now.
|
|
Start of Integer flags implementation
|
|
acc: Stub StoreSaveDataThumbnail
|
|
Bump conan SDL2 version to 2.0.14
|
|
|
|
bit_util: Unify implementations of MostSignificantBit32/MostSignificantBit64
|
|
Update conan package version used for building.
A couple of new joystick-related functions might pose interest to yuzu's input system. Some sort of LED management have been added, but it doesn't seem to support leds used for player number indication JoyCons/ProCons use.
|
|
We can use the standardized CLZ facilities to perform this. This also
allows us to make utilizing functions constexpr and eliminate the
inclusion of an intrinsics header.
|
|
HID: Add multitouch support
|
|
vk_shader_decompiler: Show comments as OpUndef with a type
|
|
ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero.
- Used by Monster Hunter Rise demo.
|
|
Fix player 1 turning on handheld and not updating handheld settings
|
|
Pretty basic service, only thing left to do is handle setting applying once set:sys is implemented
|
|
Port citra-emu/citra#5344: "game_list: Fix folder reordering"
|
|
Fixes ACA NEOGEO METAL SLUG hanging on boot.
|
|
texture_cache/util: Resolve -Wsign-compare warning
|
|
configure_service: Only compile FormatEventStatusString when YUZU_ENABLE_BOXCAT is enabled
|
|
npad: Add check for HANDHELD_INDEX in UpdateControllerAt()
|
|
|
|
|
|
The bug(s) happened because we swapped the contents on values.game_dirs, but the pointer each item had to their respective game_dir wasn't updated. This made it so that the item had the wrong game_dir associated with it after a "move up" or "move down" operation. It can be observed by choosing "open directory location" after such operation.
Changed from raw pointer to an index because it's equivalent but a bit clearer, but the change is not essential.
Co-Authored-By: Vitor K <29167336+vitor-k@users.noreply.github.com>
|
|
YUZU_ENABLE_BOXCAT is enabled
The function is unused if YUZU_ENABLE_BOXCAT is disabled, causing a
-Wunused-funciton error when compiled.
Wrapping it with `#ifdef YUZU_ENABLE_BOXCAT` to prevent compiling the
function when the variable is disabled. Opting to not use [[maybe
unused]] in case the function is totally unused in the future.
|
|
|
|
core: Silence Wclass-memaccess warnings and enforce it
|