mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
brw: Drop uniform pull constant load virtual opcode from is_send()
The logical send lowering already resolves sources when constructing the send payload, so prior to that lowering, we don't need to apply any special restrictions here. Reviewed-by: Caio Oliveira <caio.oliveira@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34040>
This commit is contained in:
parent
9d5cd03ea8
commit
e2022017ce
1 changed files with 0 additions and 2 deletions
|
|
@ -175,8 +175,6 @@ brw_inst::is_send() const
|
||||||
case SHADER_OPCODE_SEND_GATHER:
|
case SHADER_OPCODE_SEND_GATHER:
|
||||||
case SHADER_OPCODE_BARRIER:
|
case SHADER_OPCODE_BARRIER:
|
||||||
return true;
|
return true;
|
||||||
case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD:
|
|
||||||
return src[1].file == VGRF;
|
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue