From 5f03570eaa8f56f9d6df5e974aa0af1086cf79f0 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 2 Jun 2021 12:24:37 +1000 Subject: [PATCH] intel: reorder base program key. This gets hashed a lot, this reduces the size of this, and the other keys by a small amount Reviewed-by: Jason Ekstrand Part-of: --- src/intel/compiler/brw_compiler.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index afb3a615e9f..3009161fc3f 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -232,10 +232,8 @@ struct brw_base_prog_key { unsigned program_string_id; enum brw_subgroup_size_type subgroup_size_type; - - struct brw_sampler_prog_key_data tex; - bool robust_buffer_access; + struct brw_sampler_prog_key_data tex; }; /**