diff options
Diffstat (limited to 'src/intel/compiler/brw_fs.h')
-rw-r--r-- | src/intel/compiler/brw_fs.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/intel/compiler/brw_fs.h b/src/intel/compiler/brw_fs.h index b070d3888eb..da3259323ec 100644 --- a/src/intel/compiler/brw_fs.h +++ b/src/intel/compiler/brw_fs.h @@ -99,9 +99,9 @@ public: bool run_tcs_single_patch(); bool run_tes(); bool run_gs(); - bool run_cs(); + bool run_cs(unsigned min_dispatch_width); void optimize(); - void allocate_registers(bool allow_spilling); + void allocate_registers(unsigned min_dispatch_width, bool allow_spilling); void setup_fs_payload_gen4(); void setup_fs_payload_gen6(); void setup_vs_payload(); @@ -364,7 +364,6 @@ public: bool spilled_any_registers; const unsigned dispatch_width; /**< 8, 16 or 32 */ - unsigned min_dispatch_width; unsigned max_dispatch_width; int shader_time_index; |