Home
last modified time | relevance | path

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

/NW4C-2.0.3/include/nw/gfx/
Dgfx_AnimGroup.h170 const anim::AnimBlendOp* GetBlendOperationInGroup(int blendOpIdx) const in GetBlendOperationInGroup() argument
172 NW_MINMAXLT_ASSERT(blendOpIdx, 0, m_BlendOperations.Size()); in GetBlendOperationInGroup()
173 return m_BlendOperations[blendOpIdx]; in GetBlendOperationInGroup()
177 void SetBlendOperationInGroup(int blendOpIdx, anim::AnimBlendOp* blendOp) in SetBlendOperationInGroup() argument
179 NW_MINMAXLT_ASSERT(blendOpIdx, 0, m_BlendOperations.Size()); in SetBlendOperationInGroup()
180 m_BlendOperations[blendOpIdx] = blendOp; in SetBlendOperationInGroup()
/NW4C-2.0.3/sources/libraries/gfx/
Dgfx_AnimGroup.cpp142 for (int blendOpIdx = 0; blendOpIdx < blendOpCount; ++blendOpIdx) in Initialize() local
144 const int blendOpType = m_ResAnimGroup.GetBlendOperations(blendOpIdx); in Initialize()