mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
i965/fs: Add support for generating the LINE instruction.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
92346db057
commit
6be863af0e
1 changed files with 4 additions and 0 deletions
|
|
@ -1598,6 +1598,10 @@ fs_generator::generate_code(const cfg_t *cfg, int dispatch_width)
|
|||
brw_MACH(p, dst, src[0], src[1]);
|
||||
break;
|
||||
|
||||
case BRW_OPCODE_LINE:
|
||||
brw_LINE(p, dst, src[0], src[1]);
|
||||
break;
|
||||
|
||||
case BRW_OPCODE_MAD:
|
||||
assert(brw->gen >= 6);
|
||||
brw_set_default_access_mode(p, BRW_ALIGN_16);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue