intel/brw: Rename fs_inst to brw_inst
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33114>
This commit is contained in:
@@ -95,7 +95,7 @@ is_ud_imm(const brw_reg ®)
|
||||
}
|
||||
|
||||
static void
|
||||
validate_memory_logical(const fs_visitor &s, const fs_inst *inst)
|
||||
validate_memory_logical(const fs_visitor &s, const brw_inst *inst)
|
||||
{
|
||||
const intel_device_info *devinfo = s.devinfo;
|
||||
|
||||
@@ -200,7 +200,7 @@ brw_shader_phase_to_string(enum brw_shader_phase phase)
|
||||
}
|
||||
|
||||
static void
|
||||
brw_validate_instruction_phase(const fs_visitor &s, fs_inst *inst)
|
||||
brw_validate_instruction_phase(const fs_visitor &s, brw_inst *inst)
|
||||
{
|
||||
enum brw_shader_phase invalid_from = BRW_SHADER_PHASE_INVALID;
|
||||
|
||||
@@ -291,7 +291,7 @@ brw_validate(const fs_visitor &s)
|
||||
*/
|
||||
uint32_t last_used_address_register[16] = {};
|
||||
|
||||
foreach_inst_in_block (fs_inst, inst, block) {
|
||||
foreach_inst_in_block (brw_inst, inst, block) {
|
||||
brw_validate_instruction_phase(s, inst);
|
||||
|
||||
switch (inst->opcode) {
|
||||
|
||||
Reference in New Issue
Block a user