diff --git a/.pick_status.json b/.pick_status.json index edaae822fe7..95ec70df217 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -4734,7 +4734,7 @@ "description": "nir/gather_info: clear interpolation qualifiers before gathering", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "66740d9c91b2e498423bca9f069225389124a23c", "notes": null diff --git a/src/compiler/nir/nir_gather_info.c b/src/compiler/nir/nir_gather_info.c index 07bddf4d17d..2ac32c7e42e 100644 --- a/src/compiler/nir/nir_gather_info.c +++ b/src/compiler/nir/nir_gather_info.c @@ -1067,6 +1067,8 @@ nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint) shader->info.patch_outputs_written_indirectly = 0; shader->info.per_primitive_inputs = 0; shader->info.per_primitive_outputs = 0; + shader->info.linear_varyings = 0; + shader->info.perspective_varyings = 0; shader->info.uses_resource_info_query = false;