mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-14 10:08:05 +02:00
intel/fs: Fix fs_inst::flags_written() for Gen4-5 FB writes.
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
ed09e78023
commit
90643689aa
1 changed files with 2 additions and 1 deletions
|
|
@ -957,7 +957,8 @@ fs_inst::flags_written() const
|
|||
opcode != BRW_OPCODE_IF &&
|
||||
opcode != BRW_OPCODE_WHILE)) ||
|
||||
opcode == FS_OPCODE_MOV_DISPATCH_TO_FLAGS ||
|
||||
opcode == SHADER_OPCODE_FIND_LIVE_CHANNEL) {
|
||||
opcode == SHADER_OPCODE_FIND_LIVE_CHANNEL ||
|
||||
opcode == FS_OPCODE_FB_WRITE) {
|
||||
return flag_mask(this);
|
||||
} else {
|
||||
return flag_mask(dst, size_written);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue