Searched refs:m_pixelData (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DPlatformImage.h43 const uint8_t* pixels() const { return m_pixelData ? &m_pixelData[0] : 0; }
47 OwnArrayPtr<uint8_t> m_pixelData; member in class:WebCore::PlatformImage
H A DPlatformCanvas.cpp58 m_pixelData = adoptArrayPtr(new uint8_t[bufferSize]);
59 memset(m_pixelData.get(), 0, bufferSize);
77 if (canvas->m_pixelData)
78 m_pixels = &canvas->m_pixelData[0];
102 m_contextCG = CGBitmapContextCreate(canvas->m_pixelData.get(),
H A DPlatformImage.cpp66 m_pixelData = adoptArrayPtr(new uint8_t[bufferSize]);
67 memset(m_pixelData.get(), 0, bufferSize);
75 skiaBitmap->copyPixelsTo(m_pixelData.get(), bufferSize);
98 RetainPtr<CGContextRef> tempContext(AdoptCF, CGBitmapContextCreate(m_pixelData.get(),
H A DPlatformCanvas.h104 OwnArrayPtr<uint8_t> m_pixelData; member in class:WebCore::PlatformCanvas
/external/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsContextWin.cpp79 m_pixelData.initialize(m_bitmap);
81 ASSERT(storage == m_pixelData.buffer());
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h494 UInt8* buffer() const { return m_pixelData.buffer(); }
495 unsigned bufferLength() const { return m_pixelData.bufferLength(); }
496 const IntSize& size() const { return m_pixelData.size(); }
497 unsigned bytesPerRow() const { return m_pixelData.bytesPerRow(); }
498 unsigned short bitsPerPixel() const { return m_pixelData.bitsPerPixel(); }
499 const DIBPixelData& windowsDIB() const { return m_pixelData; }
504 DIBPixelData m_pixelData; member in class:WebCore::GraphicsContext::WindowsBitmap
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DSharedBitmap.h135 OwnArrayPtr<unsigned> m_pixelData; member in class:WebCore::SharedBitmap
H A DSharedBitmap.cpp79 m_pixelData = adoptArrayPtr(new unsigned[bufferSize]);
80 m_pixels = m_pixelData.get();
161 m_pixelData = newPixelData.release();
182 m_pixelData = nullptr;
232 m_pixelData = nullptr;

Completed in 60 milliseconds