Home | History | Annotate | Download | only in skia

Lines Matching refs:m_bitmap

50     m_bitmap = other.m_bitmap;
53 m_bitmap.lockPixels();
64 m_bitmap.reset();
74 m_bitmap.eraseARGB(0, 0, 0, 0);
82 m_bitmap.reset();
83 const NativeImageSkia& otherBitmap = other.m_bitmap;
84 return otherBitmap.copyTo(&m_bitmap, otherBitmap.config());
92 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight);
93 if (!m_bitmap.allocPixels())
104 return new SkBitmapRef(m_bitmap);
106 return new NativeImageSkia(m_bitmap);
112 return !m_bitmap.isOpaque();
117 m_bitmap.setIsOpaque(!alpha);
129 m_bitmap.setDataComplete(); // Tell the bitmap it's done.
134 return m_bitmap.width();
139 return m_bitmap.height();