diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-04-09 23:04:41 -0400 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2020-04-10 16:53:57 +0200 |
commit | 3439c24bdb529e6223de9cd18824b3d72ff52649 (patch) | |
tree | a6b57c51d14152221045b9acaf0d6ad7ad0b8c25 /src/panfrost/bifrost/bi_tables.c | |
parent | e34add229ff06203fe852b15cb7ff32cf9e4c344 (diff) |
panfrost: Fix BI_BLEND packing
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4505>
Diffstat (limited to 'src/panfrost/bifrost/bi_tables.c')
-rw-r--r-- | src/panfrost/bifrost/bi_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bi_tables.c b/src/panfrost/bifrost/bi_tables.c index c94d1572a3f..7e9c90327f1 100644 --- a/src/panfrost/bifrost/bi_tables.c +++ b/src/panfrost/bifrost/bi_tables.c @@ -31,7 +31,7 @@ unsigned bi_class_props[BI_NUM_CLASSES] = { [BI_ATEST] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD, [BI_BRANCH] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD, [BI_CMP] = BI_GENERIC | BI_MODS | BI_SCHED_ALL, - [BI_BLEND] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR, + [BI_BLEND] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_SRC, [BI_BITWISE] = BI_GENERIC | BI_SCHED_ALL, [BI_COMBINE] = 0, [BI_CONVERT] = BI_SCHED_ALL | BI_SWIZZLABLE, |