diff options
author | Neil Roberts <[email protected]> | 2020-06-24 00:15:12 +0200 |
---|---|---|
committer | Neil Roberts <[email protected]> | 2020-06-26 09:36:15 +0200 |
commit | dab8a9169c197a98df23f2bd0eb5e18cdeb71c99 (patch) | |
tree | 75bb58276ffe052ce46308c68305c63a455d343c /src/broadcom/compiler | |
parent | 71794567f966fd51eb626598d586ef75020adbf4 (diff) |
v3d: Add missing macro for stvpmd instruction
stvpmd is like stvpmv but it scatters the output. It can be used with
non-dynamically uniform offsets.
Reviewed-by: Iago Toral Quiroga <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5621>
Diffstat (limited to 'src/broadcom/compiler')
-rw-r--r-- | src/broadcom/compiler/v3d_compiler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/broadcom/compiler/v3d_compiler.h b/src/broadcom/compiler/v3d_compiler.h index c7896a28e74..296bd840314 100644 --- a/src/broadcom/compiler/v3d_compiler.h +++ b/src/broadcom/compiler/v3d_compiler.h @@ -1037,6 +1037,7 @@ VIR_A_ALU2(XOR) VIR_A_ALU2(VADD) VIR_A_ALU2(VSUB) VIR_A_NODST_2(STVPMV) +VIR_A_NODST_2(STVPMD) VIR_A_ALU1(NOT) VIR_A_ALU1(NEG) VIR_A_ALU1(FLAPUSH) |