mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-24 07:50:26 +00:00
r600/sb: add finalising for lds output queue special values.
We need to convert these to the hw special registers. Acked-By: Roland Scheidegger <sroland@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
9f3a1e9b0c
commit
c314b0a27a
@ -428,6 +428,18 @@ bool bc_finalizer::finalize_alu_src(alu_group_node* g, alu_node* a, alu_group_no
|
||||
src.chan = k.chan();
|
||||
break;
|
||||
}
|
||||
case VLK_SPECIAL_REG:
|
||||
if (v->select.sel() == SV_LDS_OQA) {
|
||||
src.sel = ALU_SRC_LDS_OQ_A_POP;
|
||||
src.chan = 0;
|
||||
} else if (v->select.sel() == SV_LDS_OQB) {
|
||||
src.sel = ALU_SRC_LDS_OQ_B_POP;
|
||||
src.chan = 0;
|
||||
} else {
|
||||
src.sel = ALU_SRC_0;
|
||||
src.chan = 0;
|
||||
}
|
||||
break;
|
||||
case VLK_PARAM:
|
||||
case VLK_SPECIAL_CONST:
|
||||
src.sel = v->select.sel();
|
||||
|
Loading…
Reference in New Issue
Block a user