Home
last modified time | relevance | path

Searched refs:pLastIndex (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dfetch_jit.cpp60 Value* GetSimdValid32bitIndices(Value* vIndices, Value* pLastIndex);
61 Value* GetSimdValid16bitIndices(Value* vIndices, Value* pLastIndex);
62 Value* GetSimdValid8bitIndices(Value* vIndices, Value* pLastIndex);
128 Value* pLastIndex = LOAD(mpFetchInfo,{0, SWR_FETCH_CONTEXT_pLastIndex}); in Create() local
129 pLastIndex->setName("pLastIndex"); in Create()
142 pLastIndex = BITCAST(pLastIndex, Type::getInt8PtrTy(JM()->mContext, 0)); in Create()
143 vIndices = GetSimdValid8bitIndices(indices, pLastIndex); in Create()
153 pLastIndex = BITCAST(pLastIndex, Type::getInt16PtrTy(JM()->mContext, 0)); in Create()
154 vIndices = GetSimdValid16bitIndices(indices, pLastIndex); in Create()
159 … : vIndices = GetSimdValid32bitIndices(indices, pLastIndex); in Create()
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfrontend.cpp1213 …fetchInfo.pLastIndex = (const int32_t*)(((uint8_t*)state.indexBuffer.pIndices) + state.indexBuffer… in ProcessDraw()
1214 if (pLastRequestedIndex < fetchInfo.pLastIndex) in ProcessDraw()
1216 fetchInfo.pLastIndex = pLastRequestedIndex; in ProcessDraw()
Dstate.h550 …const int32_t* pLastIndex; // IN: pointer to end of index buffer, used for bounds… member