Module: Mesa Branch: main Commit: ac5eb4934bd7bc0b2105115ec8af2656266f4df0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ac5eb4934bd7bc0b2105115ec8af2656266f4df0
Author: Alyssa Rosenzweig <[email protected]> Date: Fri Mar 4 20:19:23 2022 -0500 pan/bi: Fix write_mask size We really need to stop tying the IR to Bifrost... Fixes: 3c817ed511c ("pan/bi: Model Valhall texture instructions") Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15586> --- src/panfrost/bifrost/ISA.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/panfrost/bifrost/ISA.xml b/src/panfrost/bifrost/ISA.xml index 0d3b4fae3c6..17670908117 100644 --- a/src/panfrost/bifrost/ISA.xml +++ b/src/panfrost/bifrost/ISA.xml @@ -8435,7 +8435,7 @@ <opt>3d</opt> <opt>cube</opt> </mod> - <mod name="write_mask" start="9" size="2"> + <mod name="write_mask" start="9" size="4"> <opt>none</opt> <opt>r</opt> <opt>g</opt> @@ -8483,7 +8483,7 @@ <opt>3d</opt> <opt>cube</opt> </mod> - <mod name="write_mask" start="9" size="2"> + <mod name="write_mask" start="9" size="4"> <opt>none</opt> <opt>r</opt> <opt>g</opt> @@ -8532,7 +8532,7 @@ <opt>3d</opt> <opt>cube</opt> </mod> - <mod name="write_mask" start="9" size="2"> + <mod name="write_mask" start="9" size="4"> <opt>none</opt> <opt>r</opt> <opt>g</opt>
