diff options
| author | 2021-08-26 21:37:34 -0400 | |
|---|---|---|
| committer | 2021-08-26 21:37:34 -0400 | |
| commit | 6e407c02d8da973c369d6fe0c7ec80bd0fae12bc (patch) | |
| tree | 7538c409d35e3f61e8cb500b75d9934ee3e2608a /src/shader_recompiler/backend | |
| parent | Merge pull request #6919 from ameerj/vk-int8-capability (diff) | |
| download | yuzu-6e407c02d8da973c369d6fe0c7ec80bd0fae12bc.tar.gz yuzu-6e407c02d8da973c369d6fe0c7ec80bd0fae12bc.tar.xz yuzu-6e407c02d8da973c369d6fe0c7ec80bd0fae12bc.zip | |
emit_spirv_context_get_set: Fix Get FrontFace return value
The IR expects GetAttribute to return an F32 value. This case was returning a U32 instead.
Diffstat (limited to 'src/shader_recompiler/backend')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp index 14c77f162..9e54a17ee 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp | |||
| @@ -333,8 +333,9 @@ Id EmitGetAttribute(EmitContext& ctx, IR::Attribute attr, Id vertex) { | |||
| 333 | return ctx.OpBitcast(ctx.F32[1], ctx.OpISub(ctx.U32[1], index, base)); | 333 | return ctx.OpBitcast(ctx.F32[1], ctx.OpISub(ctx.U32[1], index, base)); |
| 334 | } | 334 | } |
| 335 | case IR::Attribute::FrontFace: | 335 | case IR::Attribute::FrontFace: |
| 336 | return ctx.OpSelect(ctx.U32[1], ctx.OpLoad(ctx.U1, ctx.front_face), | 336 | return ctx.OpSelect(ctx.F32[1], ctx.OpLoad(ctx.U1, ctx.front_face), |
| 337 | ctx.Const(std::numeric_limits<u32>::max()), ctx.u32_zero_value); | 337 | ctx.OpBitcast(ctx.F32[1], ctx.Const(std::numeric_limits<u32>::max())), |
| 338 | ctx.f32_zero_value); | ||
| 338 | case IR::Attribute::PointSpriteS: | 339 | case IR::Attribute::PointSpriteS: |
| 339 | return ctx.OpLoad(ctx.F32[1], | 340 | return ctx.OpLoad(ctx.F32[1], |
| 340 | ctx.OpAccessChain(ctx.input_f32, ctx.point_coord, ctx.u32_zero_value)); | 341 | ctx.OpAccessChain(ctx.input_f32, ctx.point_coord, ctx.u32_zero_value)); |