Searched refs:m_colorTable (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageReader.h161 // For paletted images, allocates and initializes the m_colorTable[]
243 setRGBA(m_colorTable[colorIndex].rgbRed, m_colorTable[colorIndex].rgbGreen, m_colorTable[colorIndex].rgbBlue, 0xff);
336 Vector<RGBTriple> m_colorTable; member in class:WebCore::BMPImageReader
H A DBMPImageReader.cpp479 m_colorTable.resize(m_infoHeader.biClrUsed);
481 m_colorTable[i].rgbBlue = m_data->data()[m_decodedOffset++];
482 m_colorTable[i].rgbGreen = m_data->data()[m_decodedOffset++];
483 m_colorTable[i].rgbRed = m_data->data()[m_decodedOffset++];

Completed in 178 milliseconds