From e2022017ce8e61e763a347a809e1db0edfbbf744 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 4 Aug 2025 13:59:42 -0700 Subject: [PATCH] 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 Part-of: --- src/intel/compiler/brw_inst.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/intel/compiler/brw_inst.cpp b/src/intel/compiler/brw_inst.cpp index d88a0913bb7..e7990325a23 100644 --- a/src/intel/compiler/brw_inst.cpp +++ b/src/intel/compiler/brw_inst.cpp @@ -175,8 +175,6 @@ brw_inst::is_send() const case SHADER_OPCODE_SEND_GATHER: case SHADER_OPCODE_BARRIER: return true; - case FS_OPCODE_UNIFORM_PULL_CONSTANT_LOAD: - return src[1].file == VGRF; default: return false; }