BMPImageReader.h | 171 // |numPixels| is ignored. Expects |m_coord| to point at the 187 return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numRows) < 0); 197 const int offset = m_coord.x() * bytesPerPixel; 250 m_buffer->setRGBA(m_coord.x(), m_coord.y(), red, green, blue, alpha); 251 m_coord.move(1, 0); 264 while (m_coord.x() < endCoord) 337 IntPoint m_coord; member in class:WebCore::BMPImageReader
|