pan/bi: Add CSEL condition

Along with src_types, this is enough to represent CSEL.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4061>
This commit is contained in:
Alyssa Rosenzweig 2020-03-05 07:46:00 -05:00 committed by Marge Bot
parent 47451bb9f1
commit 546c301ff6

View file

@ -234,6 +234,10 @@ typedef struct {
struct bi_load load;
struct bi_load_vary load_vary;
struct bi_branch branch;
/* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make
* sense here but you can always just use a move for that */
enum bi_cond csel_cond;
};
} bi_instruction;