diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp b/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp index 176f91e11d7..32669f689d6 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp @@ -656,11 +656,12 @@ void fs_visitor::emit_spill(bblock_t *block, fs_inst *inst, fs_reg src, uint32_t spill_offset, int count) { - int spill_base_mrf = dispatch_width > 8 ? 13 : 14; - int reg_size = 1; - if (count % 2 == 0) + int spill_base_mrf = 14; + if (count % 2 == 0) { + spill_base_mrf = 13; reg_size = 2; + } for (int i = 0; i < count / reg_size; i++) { fs_inst *spill_inst = |