Home | History | Annotate | Download | only in skia

Lines Matching refs:m_bitmap

44     m_bitmap.reset();
54 m_bitmap.eraseARGB(0, 0, 0, 0);
62 m_bitmap.reset();
63 const NativeImageSkia& otherBitmap = other.m_bitmap;
64 otherBitmap.copyTo(&m_bitmap, otherBitmap.config());
72 m_bitmap.setConfig(SkBitmap::kARGB_8888_Config, newWidth, newHeight);
73 if (!m_bitmap.allocPixels())
85 return new SkBitmapRef(m_bitmap);
87 return new NativeImageSkia(m_bitmap);
93 return !m_bitmap.isOpaque();
98 m_bitmap.setIsOpaque(!alpha);
105 m_bitmap.setDataComplete(); // Tell the bitmap it's done.
113 m_bitmap = other.m_bitmap;
116 m_bitmap.lockPixels();
126 return m_bitmap.width();
131 return m_bitmap.height();