diff --git a/src/gallium/drivers/iris/iris_program.c b/src/gallium/drivers/iris/iris_program.c index 0a6a2a4346f..4d728eb846b 100644 --- a/src/gallium/drivers/iris/iris_program.c +++ b/src/gallium/drivers/iris/iris_program.c @@ -582,7 +582,6 @@ iris_to_brw_fs_key(const struct iris_screen *screen, .force_dual_color_blend = key->force_dual_color_blend, .coherent_fb_fetch = key->coherent_fb_fetch, .color_outputs_valid = key->color_outputs_valid, - .input_slots_valid = key->input_slots_valid, .ignore_sample_mask_out = !key->multisample_fbo, .null_push_constant_tbimr_workaround = screen->devinfo->needs_null_push_constant_tbimr_workaround, diff --git a/src/intel/compiler/brw/brw_compiler.h b/src/intel/compiler/brw/brw_compiler.h index d5fda73d1eb..5045a210741 100644 --- a/src/intel/compiler/brw/brw_compiler.h +++ b/src/intel/compiler/brw/brw_compiler.h @@ -401,8 +401,6 @@ struct brw_mesh_prog_key struct brw_wm_prog_key { struct brw_base_prog_key base; - uint64_t input_slots_valid; - float min_sample_shading; uint8_t color_outputs_valid; diff --git a/src/intel/compiler/brw/brw_debug_recompile.c b/src/intel/compiler/brw/brw_debug_recompile.c index 5f644e1ae59..700c983ec43 100644 --- a/src/intel/compiler/brw/brw_debug_recompile.c +++ b/src/intel/compiler/brw/brw_debug_recompile.c @@ -142,8 +142,6 @@ debug_fs_recompile(const struct brw_compiler *c, void *log, found |= check("ignore sample mask out", ignore_sample_mask_out); found |= check("coarse pixel", coarse_pixel); - found |= check("input slots valid", input_slots_valid); - found |= debug_base_recompile(c, log, &old_key->base, &key->base); if (!found) { diff --git a/src/intel/vulkan/anv_shader_compile.c b/src/intel/vulkan/anv_shader_compile.c index c37537ef4be..5cab72ab4c3 100644 --- a/src/intel/vulkan/anv_shader_compile.c +++ b/src/intel/vulkan/anv_shader_compile.c @@ -974,8 +974,6 @@ anv_shader_compile_fs(struct anv_device *device, nir->info.separate_shader, pos_slots); - shader_data->key.wm.input_slots_valid = prev_vue_map.slots_valid; - struct brw_compile_fs_params params = { .base = { .nir = nir,