BMPImageReader.h | 168 // |numPixels| is ignored. Expects |m_coord| to point at the 184 return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numRows) < 0); 194 const int offset = m_coord.x() * bytesPerPixel; 248 m_buffer->setRGBA(m_coord.x(), m_coord.y(), red, green, blue, alpha); 249 m_coord.move(1, 0); 262 while (m_coord.x() < endCoord) 333 IntPoint m_coord; member in class:blink::BMPImageReader
|