diff options
author | Francisco Jerez <[email protected]> | 2020-01-23 23:01:32 -0800 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2020-02-14 14:31:48 -0800 |
commit | 008f95a043dac909f6e647c3102f37bb978b148c (patch) | |
tree | 31e8a89a600d1af738990783046a0a6186a066d3 /src/intel/compiler/brw_shader.cpp | |
parent | b8b509fb921a7c2f687b9f7e5075c72847740ac4 (diff) |
intel/fs: Add virtual instruction to load mask of live channels into flag register.
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Cc: 20.0 <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_shader.cpp')
-rw-r--r-- | src/intel/compiler/brw_shader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_shader.cpp b/src/intel/compiler/brw_shader.cpp index 1906c1fff1b..0a3c3739aa2 100644 --- a/src/intel/compiler/brw_shader.cpp +++ b/src/intel/compiler/brw_shader.cpp @@ -364,6 +364,9 @@ brw_instruction_name(const struct gen_device_info *devinfo, enum opcode op) case SHADER_OPCODE_FIND_LIVE_CHANNEL: return "find_live_channel"; + case FS_OPCODE_LOAD_LIVE_CHANNELS: + return "load_live_channels"; + case SHADER_OPCODE_BROADCAST: return "broadcast"; case SHADER_OPCODE_SHUFFLE: |