- 25 Jan, 2021 6 commits
-
-
bunnei authored
nvdrv: Unregister already registered events
-
bunnei authored
video_core/memory_manager: Flush destination buffer on CopyBlock
-
Rodrigo Locatti authored
Revert "Start of Integer flags implementation"
-
ReinUsesLisp authored
This reverts #4713. The implementation in that PR is not accurate. It does not reflect the behavior seen in hardware.
-
bunnei authored
vk_graphics_pipeline: Fix narrowing conversion on MSVC
-
ReinUsesLisp authored
-
- 24 Jan, 2021 15 commits
-
-
LC authored
video_core: Silence the remaining gcc warnings and enforce them
-
Rodrigo Locatti authored
vk_texture_cache: Support image store on sRGB images with VkImageViewUsageCreateInfo
-
bunnei authored
vfs_real: When moving files or directories, don't assume file opening will succeed
-
ReinUsesLisp authored
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.
-
LC authored
vulkan_device: Lift VK_EXT_extended_dynamic_state blacklist on RDNA
-
ReinUsesLisp authored
It seems to be safe to use this on new drivers.
-
ReinUsesLisp authored
-
bunnei authored
vk_pipeline_cache: Properly bypass VertexA shaders
-
LC authored
host_shaders/cmake: Pass --quiet to glslang to keep it quiet
-
ReinUsesLisp authored
Silences noisy builds on toolchains.
-
ReinUsesLisp authored
-
bunnei authored
hle: service: am: Stub ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero.
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
- 23 Jan, 2021 13 commits
-
-
comex authored
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.
-
Levi Behunin authored
-
LC authored
sdl_impl: Set the maximum vibration duration to 1 second
-
Morph authored
-
Chloe Marcec authored
-
Chloe Marcec authored
-
LC authored
nsight_aftermath_tracker: Fix build issues when enabled
-
ReinUsesLisp authored
Fix "message(ERROR ..." to "message(FATAL_ERROR ..." to properly stop cmake when Nsight Aftermath can't be configured.
-
ReinUsesLisp authored
Fixes a bunch of build errors when Nsight Aftermath is properly enabled.
-
bunnei authored
lbl: Implement most of lbl
-
ReinUsesLisp authored
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.
-
bunnei authored
Start of Integer flags implementation
-
bunnei authored
acc: Stub StoreSaveDataThumbnail
-
- 22 Jan, 2021 1 commit
-
-
bunnei authored
Bump conan SDL2 version to 2.0.14
-
- 21 Jan, 2021 5 commits
-
-
bunnei authored
-
bunnei authored
bit_util: Unify implementations of MostSignificantBit32/MostSignificantBit64
-
ReinUsesLisp authored
This function was not being used.
-
ReinUsesLisp authored
When we copy into a buffer, it might contain data modified from the GPU on the same pages. Because of this, we have to flush the contents before writing new data. An alternative approach would be to write the data in place, but games can also write data in other ways, invalidating our contents. Fixes geometry in Zombie Panic in Wonderland DX.
-
ReinUsesLisp authored
Allow flushing rasterizer contents based on a GPU address.
-