Browse Source
Merge pull request #8007 from ameerj/vs-2022-errors
emit_spirv, vk_compute_pass: Resolve VS2022 compiler errors
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
2 deletions
-
src/shader_recompiler/backend/spirv/emit_spirv.h
-
src/video_core/renderer_vulkan/vk_compute_pass.cpp
|
|
|
@ -22,7 +22,7 @@ constexpr u32 NUM_TEXTURE_AND_IMAGE_SCALING_WORDS = |
|
|
|
struct RescalingLayout { |
|
|
|
alignas(16) std::array<u32, NUM_TEXTURE_SCALING_WORDS> rescaling_textures; |
|
|
|
alignas(16) std::array<u32, NUM_IMAGE_SCALING_WORDS> rescaling_images; |
|
|
|
alignas(16) u32 down_factor; |
|
|
|
u32 down_factor; |
|
|
|
}; |
|
|
|
constexpr u32 RESCALING_LAYOUT_WORDS_OFFSET = offsetof(RescalingLayout, rescaling_textures); |
|
|
|
constexpr u32 RESCALING_LAYOUT_DOWN_FACTOR_OFFSET = offsetof(RescalingLayout, down_factor); |
|
|
|
|
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <cstring>
|
|
|
|
#include <memory>
|
|
|
|
#include <optional>
|
|
|
|
@ -292,7 +293,7 @@ std::pair<VkBuffer, VkDeviceSize> QuadIndexedPass::Assemble( |
|
|
|
.srcAccessMask = VK_ACCESS_SHADER_WRITE_BIT, |
|
|
|
.dstAccessMask = VK_ACCESS_INDEX_READ_BIT, |
|
|
|
}; |
|
|
|
const std::array push_constants{base_vertex, index_shift}; |
|
|
|
const std::array<u32, 2> push_constants{base_vertex, index_shift}; |
|
|
|
const VkDescriptorSet set = descriptor_allocator.Commit(); |
|
|
|
device.GetLogical().UpdateDescriptorSet(set, *descriptor_template, descriptor_data); |
|
|
|
cmdbuf.BindPipeline(VK_PIPELINE_BIND_POINT_COMPUTE, *pipeline); |
|
|
|
|