diff options
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_context.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_context.cpp b/src/shader_recompiler/backend/spirv/emit_context.cpp index 2c93bada5..5cd505d99 100644 --- a/src/shader_recompiler/backend/spirv/emit_context.cpp +++ b/src/shader_recompiler/backend/spirv/emit_context.cpp | |||
| @@ -495,7 +495,7 @@ void EmitContext::DefineOutputs(const Info& info) { | |||
| 495 | if (info.stores_position || stage == Stage::VertexB) { | 495 | if (info.stores_position || stage == Stage::VertexB) { |
| 496 | output_position = DefineOutput(*this, F32[4], spv::BuiltIn::Position); | 496 | output_position = DefineOutput(*this, F32[4], spv::BuiltIn::Position); |
| 497 | } | 497 | } |
| 498 | if (info.stores_point_size) { | 498 | if (info.stores_point_size || profile.fixed_state_point_size) { |
| 499 | if (stage == Stage::Fragment) { | 499 | if (stage == Stage::Fragment) { |
| 500 | throw NotImplementedException("Storing PointSize in Fragment stage"); | 500 | throw NotImplementedException("Storing PointSize in Fragment stage"); |
| 501 | } | 501 | } |