Searched refs:m_szAnimation (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Danimdecod.h115 // the position of this frame in case it's not as big as m_szAnimation
130 wxSize GetAnimationSize() const { return m_szAnimation; }
135 wxSize m_szAnimation; member in class:wxAnimationDecoder
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Danidecod.cpp79 return m_szAnimation;
229 m_szAnimation = wxDefaultSize;
262 m_szAnimation = wxSize(header.cx, header.cy);
338 if (m_szAnimation.GetWidth() == 0 ||
339 m_szAnimation.GetHeight() == 0)
340 m_szAnimation = wxSize(m_images[0].GetWidth(), m_images[0].GetHeight());
342 return m_szAnimation != wxDefaultSize;
H A Dgifdecod.cpp633 m_szAnimation.SetWidth( buf[0] + 256 * buf[1] );
634 m_szAnimation.SetHeight( buf[2] + 256 * buf[3] );
636 if (anim && ((m_szAnimation.GetWidth() == 0) || (m_szAnimation.GetHeight() == 0)))
761 if (anim && ((pimg->w == 0) || (pimg->w > (unsigned int)m_szAnimation.GetWidth()) ||
762 (pimg->h == 0) || (pimg->h > (unsigned int)m_szAnimation.GetHeight())))
774 if ( pimg->w > (unsigned)m_szAnimation.x )
775 m_szAnimation.x = pimg->w;
776 if ( pimg->h > (unsigned)m_szAnimation.y )
777 m_szAnimation
[all...]

Completed in 37 milliseconds