diff options
| author | 2023-01-06 10:06:45 -0500 | |
|---|---|---|
| committer | 2023-01-06 10:06:45 -0500 | |
| commit | 8b251fc3f60330f1b1311af2d17cdb1ae9874683 (patch) | |
| tree | 9c9eca32c58912170c07097d885fc08672cb40a8 /src/video_core/buffer_cache | |
| parent | Merge pull request #9561 from liamwhite/update-dynarmic (diff) | |
| parent | Run clang-format (diff) | |
| download | yuzu-8b251fc3f60330f1b1311af2d17cdb1ae9874683.tar.gz yuzu-8b251fc3f60330f1b1311af2d17cdb1ae9874683.tar.xz yuzu-8b251fc3f60330f1b1311af2d17cdb1ae9874683.zip | |
Merge pull request #9535 from bylaws/master
Port over several shader-compiler fixes from skyline
Diffstat (limited to 'src/video_core/buffer_cache')
| -rw-r--r-- | src/video_core/buffer_cache/buffer_cache.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h index 06fd40851..627917ab6 100644 --- a/src/video_core/buffer_cache/buffer_cache.h +++ b/src/video_core/buffer_cache/buffer_cache.h | |||
| @@ -1938,14 +1938,21 @@ typename BufferCache<P>::Binding BufferCache<P>::StorageBufferBinding(GPUVAddr s | |||
| 1938 | bool is_written) const { | 1938 | bool is_written) const { |
| 1939 | const GPUVAddr gpu_addr = gpu_memory->Read<u64>(ssbo_addr); | 1939 | const GPUVAddr gpu_addr = gpu_memory->Read<u64>(ssbo_addr); |
| 1940 | const u32 size = gpu_memory->Read<u32>(ssbo_addr + 8); | 1940 | const u32 size = gpu_memory->Read<u32>(ssbo_addr + 8); |
| 1941 | const std::optional<VAddr> cpu_addr = gpu_memory->GpuToCpuAddress(gpu_addr); | 1941 | const u32 alignment = runtime.GetStorageBufferAlignment(); |
| 1942 | |||
| 1943 | const GPUVAddr aligned_gpu_addr = Common::AlignDown(gpu_addr, alignment); | ||
| 1944 | const u32 aligned_size = | ||
| 1945 | Common::AlignUp(static_cast<u32>(gpu_addr - aligned_gpu_addr) + size, alignment); | ||
| 1946 | |||
| 1947 | const std::optional<VAddr> cpu_addr = gpu_memory->GpuToCpuAddress(aligned_gpu_addr); | ||
| 1942 | if (!cpu_addr || size == 0) { | 1948 | if (!cpu_addr || size == 0) { |
| 1943 | return NULL_BINDING; | 1949 | return NULL_BINDING; |
| 1944 | } | 1950 | } |
| 1945 | const VAddr cpu_end = Common::AlignUp(*cpu_addr + size, Core::Memory::YUZU_PAGESIZE); | 1951 | |
| 1952 | const VAddr cpu_end = Common::AlignUp(*cpu_addr + aligned_size, Core::Memory::YUZU_PAGESIZE); | ||
| 1946 | const Binding binding{ | 1953 | const Binding binding{ |
| 1947 | .cpu_addr = *cpu_addr, | 1954 | .cpu_addr = *cpu_addr, |
| 1948 | .size = is_written ? size : static_cast<u32>(cpu_end - *cpu_addr), | 1955 | .size = is_written ? aligned_size : static_cast<u32>(cpu_end - *cpu_addr), |
| 1949 | .buffer_id = BufferId{}, | 1956 | .buffer_id = BufferId{}, |
| 1950 | }; | 1957 | }; |
| 1951 | return binding; | 1958 | return binding; |