Home
last modified time | relevance | path

Searched refs:pLink (Results 1 – 6 of 6) sorted by relevance

/NW4C-1.2.23/sources/libraries/lyt/
Dlyt_TextureContainer.cpp63 TextureRefLink* pLink = &this->front(); in Finalize() local
64 this->erase(pLink); in Finalize()
65 Layout::DeleteObj(pLink); in Finalize()
88 TextureRefLink* pLink = Layout::NewObj<TextureRefLink>(); in RegistTexture() local
89 if (pLink == NULL) in RegistTexture()
94 pLink->Set(name, textureInfo); in RegistTexture()
96 this->push_back(pLink); in RegistTexture()
98 return (TextureKey) pLink; in RegistTexture()
106 TextureRefLink* pLink = (TextureRefLink*)(key); in UnregistTexture() local
107 this->erase(pLink); in UnregistTexture()
[all …]
Dlyt_FontContainer.cpp79 FontRefLink* pLink = &this->front(); in Finalize() local
80 this->erase(pLink); in Finalize()
81 Layout::DeleteObj(pLink); in Finalize()
104 FontRefLink* pLink = Layout::NewObj<FontRefLink>(); in RegistFont() local
106 if (pLink == NULL) in RegistFont()
111 pLink->Set(name, pFont, own); in RegistFont()
113 this->push_back(pLink); in RegistFont()
115 return reinterpret_cast<FontKey>(pLink); in RegistFont()
123 FontRefLink* pLink = (FontRefLink*)(key); in UnregistFont() local
124 this->erase(pLink); in UnregistFont()
[all …]
Dlyt_ArcResourceAccessor.cpp363 MultiArcResourceAccessor::Attach(ArcResourceLink* pLink) in Attach() argument
365 NW_NULL_ASSERT(pLink); in Attach()
367 m_ArcList.PushBack(pLink); in Attach()
389 MultiArcResourceAccessor::Detach(ArcResourceLink* pLink) in Detach() argument
391 NW_NULL_ASSERT(pLink); in Detach()
393 m_ArcList.Erase(pLink); in Detach()
Dlyt_Animation.cpp634 AnimTransformBasic::FindUnbindLink(AnimationLink* pLink) const in FindUnbindLink()
636 if (pLink == 0) in FindUnbindLink()
643 pLink = m_pAnimLinkAry; in FindUnbindLink()
646 while (pLink < m_pAnimLinkAry + m_AnimLinkNum) in FindUnbindLink()
648 if (pLink->GetAnimTransform() == 0) in FindUnbindLink()
650 return pLink; in FindUnbindLink()
653 ++pLink; in FindUnbindLink()
/NW4C-1.2.23/include/nw/lyt/
Dlyt_ArcResourceAccessor.h357 void Attach(ArcResourceLink* pLink);
379 void Detach(ArcResourceLink* pLink);
Dlyt_Animation.h411 AnimationLink* FindUnbindLink(AnimationLink* pLink) const;