HomeSort by relevance Sort by last modified time
    Searched refs:m_bmpInfo (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.h 50 const BitmapInfo& bitmapInfo() const { return m_bmpInfo; }
53 unsigned width() const { return m_bmpInfo.width(); }
54 unsigned height() const { return m_bmpInfo.height(); }
63 bool is16bit() const { return m_bmpInfo.is16bit(); }
64 bool is32bit() const { return m_bmpInfo.is32bit(); }
132 BitmapInfo m_bmpInfo;
SharedBitmap.cpp 62 : m_bmpInfo(BitmapInfo::createBottomUp(size, bitCount))
75 unsigned bufferSize = m_bmpInfo.numPixels();
98 unsigned bufferSize = m_bmpInfo.numPixels();
133 BitmapInfo newBmpInfo = BitmapInfo::create(m_bmpInfo.size(), BitmapInfo::BitCount16);
164 m_bmpInfo = newBmpInfo;
207 StretchDIBits(bmpDC.get(), 0, 0, width(), height, 0, 0, width(), height, m_pixels, &m_bmpInfo, DIB_RGB_COLORS, SRCCOPY);
234 m_bmpInfo = bmpInfo;
276 srcRect.x(), srcRect.y(), srcRect.width(), srcRect.height(), m_pixels, &m_bmpInfo, DIB_RGB_COLORS, rop);
591 unsigned w = m_bmpInfo.paddedWidth();

Completed in 25 milliseconds