Home | History | Annotate | Download | only in dib

Lines Matching refs:m_Width

41     m_Width = m_Height = 0;

67 m_Width = m_Height = m_Pitch = 0;
96 m_Width = width;
106 m_Width = m_Height = m_Pitch = 0;
155 m_Width = pSrcBitmap->m_Width;
161 FX_RECT rect(0, 0, m_Width, m_Height);
244 if (!m_pAlphaMask->Create(m_Width, m_Height, FXDIB_8bppMask)) {
329 for (int col = 0; col < m_Width; col ++) {
343 for (int i = 0; i < m_Width; i ++) {
363 if (dest_left > m_Width || dest_top > m_Height) {
375 FX_RECT dest_bound(0, 0, m_Width, m_Height);
574 FX_RECT rect(0, 0, m_Width, m_Height);
605 FX_RECT rect(0, 0, pAlphaMask->m_Width, pAlphaMask->m_Height);
608 if (rect.IsEmpty() || rect.Width() != m_Width || rect.Height() != m_Height) {
612 if (pAlphaMask->m_Width != m_Width || pAlphaMask->m_Height != m_Height) {
716 if (pSrcClone->GetWidth() != m_Width || pSrcClone->GetHeight() != m_Height) {
718 pAlphaMask = pAlphaMask->StretchTo(m_Width, m_Height);
733 } else if (pSrcClone->GetWidth() != m_Width || pSrcClone->GetHeight() != m_Height) {
734 CFX_DIBitmap* pSrcMatched = pSrcClone->StretchTo(m_Width, m_Height);
752 for (int col = 0; col < m_Width; col ++) {
817 for (int col = 0; col < m_Width; col ++) {
837 if (pSrcBitmap->GetWidth() != m_Width || pSrcBitmap->GetHeight() != m_Height) {
838 pSrcClone = pSrcBitmap->StretchTo(m_Width, m_Height);
855 for (int col = 0; col < m_Width; col ++) {
861 for (int col = 0; col < m_Width; col ++) {
878 for (int col = 0; col < m_Width; col ++) {
913 if (!pMask->Create(m_Width, m_Height, FXDIB_8bppMask)) {
921 for (int col = 0; col < m_Width; col ++) {
947 if (!pMask->Create(m_Width, m_Height, FXDIB_8bppMask)) {
954 for (int col = 0; col < m_Width; col ++) {
967 if (!pMask->Create(m_Width, m_Height, FXDIB_8bppMask)) {
974 for (int col = 0; col < m_Width; col ++) {
988 if (!pMask->Create(m_Width, m_Height, FXDIB_8bppMask)) {
995 for (int col = 0; col < m_Width; col ++) {
1024 for (int col = 0; col < m_Width; col ++) {
1033 for (int col = 0; col < m_Width; col ++) {
1101 if (x < 0 || x >= m_Width || y < 0 || y >= m_Height) {
1177 FX_DWORD src_x = dest_x * m_Width / dest_width;
1179 src_x = m_Width - src_x - 1;
1182 src_x %= m_Width;
1189 FX_DWORD src_x = dest_x * m_Width / dest_width;
1191 src_x = m_Width - src_x - 1;
1194 src_x %= m_Width;
1219 FX_DWORD src_x = bFlipX ? (m_Width - dest_x * m_Width / dest_width - 1) * src_Bpp : (dest_x * m_Width / dest_width) * src_Bpp;
1221 src_x %= m_Width * src_Bpp;
1289 for (int col = 0; col < m_Width; col ++) {
1305 for (int col = 0; col < m_Width; col ++) {
1318 for (int col = 0; col < m_Width; col ++) {
1333 for (int col = 0; col < m_Width; col ++) {
1351 if (m_Width < 4 && m_Height < 4) {
1354 FX_RECT rect(0, 0, m_Width, m_Height);
1432 if (!pFlipped->Create(m_Width, m_Height, GetFormat())) {
1448 for (int col = 0; col < m_Width; col ++)
1450 int dest_col = m_Width - col - 1;
1454 dest_scan += (m_Width - 1) * Bpp;
1456 for (int col = 0; col < m_Width; col ++) {
1462 for (int col = 0; col < m_Width; col ++) {
1471 for (int col = 0; col < m_Width; col ++) {
1489 dest_scan += (m_Width - 1);
1490 for (int col = 0; col < m_Width; col ++) {
1542 m_Width = pSrc->GetWidth();
1547 m_Pitch = (m_Width * (format & 0xff) + 31) / 32 * 4;