mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
vc4: Fix the src count on exp2/log2.
Found by the upcoming QIR validate pass.
This commit is contained in:
parent
d36b28402f
commit
daaa9d579d
1 changed files with 2 additions and 2 deletions
|
|
@ -66,8 +66,8 @@ static const struct qir_op_info qir_op_info[] = {
|
|||
|
||||
[QOP_RCP] = { "rcp", 1, 1 },
|
||||
[QOP_RSQ] = { "rsq", 1, 1 },
|
||||
[QOP_EXP2] = { "exp2", 1, 2 },
|
||||
[QOP_LOG2] = { "log2", 1, 2 },
|
||||
[QOP_EXP2] = { "exp2", 1, 1 },
|
||||
[QOP_LOG2] = { "log2", 1, 1 },
|
||||
[QOP_TLB_COLOR_READ] = { "tlb_color_read", 1, 0 },
|
||||
[QOP_MS_MASK] = { "ms_mask", 0, 1, true },
|
||||
[QOP_VARY_ADD_C] = { "vary_add_c", 1, 1 },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue