diff options
| author | 2021-04-09 01:45:39 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:26 -0400 | |
| commit | 7cb2ab358517d95ebcd35c94c72b9e91762906c3 (patch) | |
| tree | 3f75959e255026665a4dde406cb8c4cc34fb45a0 /src/shader_recompiler/backend/spirv/emit_spirv.cpp | |
| parent | shader: Fix Windows build issues (diff) | |
| download | yuzu-7cb2ab358517d95ebcd35c94c72b9e91762906c3.tar.gz yuzu-7cb2ab358517d95ebcd35c94c72b9e91762906c3.tar.xz yuzu-7cb2ab358517d95ebcd35c94c72b9e91762906c3.zip | |
shader: Implement SULD and SUST
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv.cpp b/src/shader_recompiler/backend/spirv/emit_spirv.cpp index 355cf0ca8..ecd0fac5c 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv.cpp | |||
| @@ -253,6 +253,7 @@ void SetupCapabilities(const Profile& profile, const Info& info, EmitContext& ct | |||
| 253 | ctx.AddCapability(spv::Capability::ImageGatherExtended); | 253 | ctx.AddCapability(spv::Capability::ImageGatherExtended); |
| 254 | ctx.AddCapability(spv::Capability::ImageQuery); | 254 | ctx.AddCapability(spv::Capability::ImageQuery); |
| 255 | ctx.AddCapability(spv::Capability::SampledBuffer); | 255 | ctx.AddCapability(spv::Capability::SampledBuffer); |
| 256 | ctx.AddCapability(spv::Capability::StorageImageReadWithoutFormat); | ||
| 256 | } | 257 | } |
| 257 | 258 | ||
| 258 | Id PhiArgDef(EmitContext& ctx, IR::Inst* inst, size_t index) { | 259 | Id PhiArgDef(EmitContext& ctx, IR::Inst* inst, size_t index) { |