diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-08-27 15:50:55 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-08-30 15:50:24 -0700 |
commit | 01316719cf4494c9e354fcf7a67159ba978aa5e0 (patch) | |
tree | ea8674f90a1d4fc552f27f90f558f7823fcfeefc /src/panfrost/midgard/mir.c | |
parent | 3f757425a4ec05f9fb27914bfc17661c2ea53af4 (diff) |
pan/midgard: Expose mir_get/set_swizzle
The scheduler would like to use these.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/panfrost/midgard/mir.c')
-rw-r--r-- | src/panfrost/midgard/mir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/panfrost/midgard/mir.c b/src/panfrost/midgard/mir.c index e7129672344..472b5950956 100644 --- a/src/panfrost/midgard/mir.c +++ b/src/panfrost/midgard/mir.c @@ -38,7 +38,7 @@ void mir_rewrite_index_dst_single(midgard_instruction *ins, unsigned old, unsign ins->dest = new; } -static unsigned +unsigned mir_get_swizzle(midgard_instruction *ins, unsigned idx) { if (ins->type == TAG_ALU_4) { @@ -81,7 +81,7 @@ mir_get_swizzle(midgard_instruction *ins, unsigned idx) } } -static void +void mir_set_swizzle(midgard_instruction *ins, unsigned idx, unsigned new) { if (ins->type == TAG_ALU_4) { |