diff options
| author | 2023-01-01 13:23:24 +0000 | |
|---|---|---|
| committer | 2023-01-05 22:13:07 +0000 | |
| commit | 9e2997c4b6456031622602002924617690e32a13 (patch) | |
| tree | ce285b3d5004306b6378a89f139e77cacf112b9b /src/video_core/buffer_cache | |
| parent | shader_recompiler: Align SSBO offsets to meet host requirements (diff) | |
| download | yuzu-9e2997c4b6456031622602002924617690e32a13.tar.gz yuzu-9e2997c4b6456031622602002924617690e32a13.tar.xz yuzu-9e2997c4b6456031622602002924617690e32a13.zip | |
Vulkan, OpenGL: Hook up storage buffer alignment code
Diffstat (limited to 'src/video_core/buffer_cache')
| -rw-r--r-- | src/video_core/buffer_cache/buffer_cache.h | 12 |
1 files changed, 9 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..e6414df78 100644 --- a/src/video_core/buffer_cache/buffer_cache.h +++ b/src/video_core/buffer_cache/buffer_cache.h | |||
| @@ -1938,14 +1938,20 @@ 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 = Common::AlignUp(static_cast<u32>(gpu_addr - aligned_gpu_addr) + size, alignment); | ||
| 1945 | |||
| 1946 | const std::optional<VAddr> cpu_addr = gpu_memory->GpuToCpuAddress(aligned_gpu_addr); | ||
| 1942 | if (!cpu_addr || size == 0) { | 1947 | if (!cpu_addr || size == 0) { |
| 1943 | return NULL_BINDING; | 1948 | return NULL_BINDING; |
| 1944 | } | 1949 | } |
| 1945 | const VAddr cpu_end = Common::AlignUp(*cpu_addr + size, Core::Memory::YUZU_PAGESIZE); | 1950 | |
| 1951 | const VAddr cpu_end = Common::AlignUp(*cpu_addr + aligned_size, Core::Memory::YUZU_PAGESIZE); | ||
| 1946 | const Binding binding{ | 1952 | const Binding binding{ |
| 1947 | .cpu_addr = *cpu_addr, | 1953 | .cpu_addr = *cpu_addr, |
| 1948 | .size = is_written ? size : static_cast<u32>(cpu_end - *cpu_addr), | 1954 | .size = is_written ? aligned_size : static_cast<u32>(cpu_end - *cpu_addr), |
| 1949 | .buffer_id = BufferId{}, | 1955 | .buffer_id = BufferId{}, |
| 1950 | }; | 1956 | }; |
| 1951 | return binding; | 1957 | return binding; |