mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-27 05:30:24 +01:00
i965: Allow SIMD16 color writes on Ivybridge.
Again, the check was needlessly specific: this works fine on Gen7. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
79cba4c2b1
commit
83df7fbe62
1 changed files with 1 additions and 1 deletions
|
|
@ -1803,7 +1803,7 @@ fs_visitor::emit_color_write(int index, int first_color_mrf, fs_reg color)
|
|||
int reg_width = c->dispatch_width / 8;
|
||||
fs_inst *inst;
|
||||
|
||||
if (c->dispatch_width == 8 || intel->gen == 6) {
|
||||
if (c->dispatch_width == 8 || intel->gen >= 6) {
|
||||
/* SIMD8 write looks like:
|
||||
* m + 0: r0
|
||||
* m + 1: r1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue