mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-15 19:20:34 +01:00
swr/rast: Remove no-op VBROADCAST of vID
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
01a57c11cb
commit
ca59b2e75c
1 changed files with 2 additions and 2 deletions
|
|
@ -3101,7 +3101,7 @@ Value* FetchJit::GenerateCompCtrlVector(const ComponentControl ctrl)
|
|||
#else
|
||||
Value* pId = BITCAST(LOAD(GEP(mpFetchInfo, { 0, SWR_FETCH_CONTEXT_VertexID })), mSimdFP32Ty);
|
||||
#endif
|
||||
return VBROADCAST(pId);
|
||||
return pId;
|
||||
}
|
||||
case StoreInstanceId:
|
||||
{
|
||||
|
|
@ -3129,7 +3129,7 @@ Value* FetchJit::GenerateCompCtrlVector2(const ComponentControl ctrl)
|
|||
|
||||
Value *pId = JOIN2(pId_lo, pId_hi);
|
||||
|
||||
return VBROADCAST2(pId);
|
||||
return pId;
|
||||
}
|
||||
case StoreInstanceId:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue