Module: Mesa Branch: staging/20.1 Commit: 6a7e82515707290c947c3be17c024f70aba480dd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6a7e82515707290c947c3be17c024f70aba480dd
Author: Neil Roberts <[email protected]> Date: Wed Jun 24 00:15:12 2020 +0200 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> (cherry picked from commit dab8a9169c197a98df23f2bd0eb5e18cdeb71c99) --- .pick_status.json | 2 +- src/broadcom/compiler/v3d_compiler.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index cd48fe4d2ef..dbe32e7c39e 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -2425,7 +2425,7 @@ "description": "v3d: Add missing macro for stvpmd instruction", "nominated": false, "nomination_type": null, - "resolution": 4, + "resolution": 1, "master_sha": null, "because_sha": null }, diff --git a/src/broadcom/compiler/v3d_compiler.h b/src/broadcom/compiler/v3d_compiler.h index 0489ebdc12e..2e6ac73f589 100644 --- a/src/broadcom/compiler/v3d_compiler.h +++ b/src/broadcom/compiler/v3d_compiler.h @@ -1038,6 +1038,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) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
