From 0eeeab16a8be98e34cd9231f73b8ca6bbfa2b4a9 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Wed, 28 Feb 2024 05:14:21 -0800 Subject: [PATCH] intel/brw: Delete brw_wm_prog_key::line_aa Not used on modern hardware. Reviewed-by: Caio Oliveira Part-of: --- src/intel/compiler/brw_compiler.h | 4 +--- src/intel/compiler/brw_debug_recompile.c | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index 51631e9cc4c..ecaa8d7f31b 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -324,8 +324,6 @@ struct brw_wm_prog_key { /* Whether or not we are running on a multisampled framebuffer */ enum brw_sometimes multisample_fbo:2; - enum brw_sometimes line_aa:2; - /* Whether the preceding shader stage is mesh */ enum brw_sometimes mesh_input:2; @@ -333,7 +331,7 @@ struct brw_wm_prog_key { bool ignore_sample_mask_out:1; bool coarse_pixel:1; - uint64_t padding:34; + uint64_t padding:36; }; struct brw_cs_prog_key { diff --git a/src/intel/compiler/brw_debug_recompile.c b/src/intel/compiler/brw_debug_recompile.c index 156317af1c6..012e4fdfe9c 100644 --- a/src/intel/compiler/brw_debug_recompile.c +++ b/src/intel/compiler/brw_debug_recompile.c @@ -139,7 +139,6 @@ debug_fs_recompile(const struct brw_compiler *c, void *log, found |= check("fragment color clamping", clamp_fragment_color); found |= check("per-sample interpolation", persample_interp); found |= check("multisampled FBO", multisample_fbo); - found |= check("line smoothing", line_aa); found |= check("force dual color blending", force_dual_color_blend); found |= check("coherent fb fetch", coherent_fb_fetch); found |= check("ignore sample mask out", ignore_sample_mask_out);