Home
last modified time | relevance | path

Searched refs:m_pixels (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/wince/
DSharedBitmap.cpp66 , m_pixels(0) in SharedBitmap()
80 m_pixels = m_pixelData.get(); in SharedBitmap()
95 if (!m_pixels) in resetPixels()
101 memset(m_pixels, 0, bufferSizeInBytes); in resetPixels()
107 wmemset(static_cast<wchar_t*>(m_pixels), 0xFFFF, bufferSize); in resetPixels()
112 unsigned* pixel = static_cast<unsigned*>(m_pixels); in resetPixels()
145 const unsigned* p32 = static_cast<const unsigned*>(m_pixels); in to16bit()
163 m_pixels = newPixels; in to16bit()
177 m_pixels = 0; in freeMemory()
181 if (m_pixels) { in freeMemory()
[all …]
DSharedBitmap.h51 void* bytes() { return m_pixels; } in bytes()
52 const void* bytes() const { return m_pixels; } in bytes()
134 void* m_pixels; variable
/external/webkit/Source/WebCore/platform/graphics/chromium/
DPlatformCanvas.cpp65 , m_pixels(0) in AutoLocker()
73 m_pixels = static_cast<uint8_t*>(m_bitmap->getPixels()); in AutoLocker()
78 m_pixels = &canvas->m_pixelData[0]; in AutoLocker()
DPlatformCanvas.h68 const uint8_t* pixels() const { return m_pixels; } in pixels()
74 uint8_t* m_pixels; variable