Home
last modified time | relevance | path

Searched refs:blendOpIdx (Results 1 – 2 of 2) sorted by relevance

/NW4C-1.3.3/include/nw/gfx/
Dgfx_AnimObject.h224 const anim::AnimBlendOp* GetBlendOperationInGroup(int blendOpIdx) const in GetBlendOperationInGroup() argument
226 NW_MINMAXLT_ASSERT(blendOpIdx, 0, m_BlendOperations.Size()); in GetBlendOperationInGroup()
227 return m_BlendOperations[blendOpIdx]; in GetBlendOperationInGroup()
231 void SetBlendOperationInGroup(int blendOpIdx, anim::AnimBlendOp* blendOp) in SetBlendOperationInGroup() argument
233 NW_MINMAXLT_ASSERT(blendOpIdx, 0, m_BlendOperations.Size()); in SetBlendOperationInGroup()
234 m_BlendOperations[blendOpIdx] = blendOp; in SetBlendOperationInGroup()
/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_AnimObject.cpp180 for (int blendOpIdx = 0; blendOpIdx < blendOpCount; ++blendOpIdx) in Initialize() local
182 const int blendOpType = m_ResAnimGroup.GetBlendOperations(blendOpIdx); in Initialize()