Home | History | Annotate | Download | only in ports

Lines Matching refs:bitmap

93     //Get the size of the bitmap.
100 //Exit early if we're only looking for the bitmap bounds.
119 piBitmapSourceOriginal.get() //Input bitmap to convert
136 //Copy the pixels into the bitmap.
197 const SkBitmap* bitmap;
200 bitmap = &bitmapOrig;
205 bitmap = &bitmapCopy;
209 if (!bitmap->isOpaque()) {
210 SkAutoLockPixels alp(*bitmap);
212 uint8_t* pixels = reinterpret_cast<uint8_t*>(bitmap->getPixels());
213 for (int y = 0; y < bitmap->height(); ++y) {
214 for (int x = 0; x < bitmap->width(); ++x) {
215 uint8_t* bytes = pixels + y * bitmap->rowBytes() + x * bitmap->bytesPerPixel();
289 const UINT width = bitmap->width();
290 const UINT height = bitmap->height();
308 SkAutoLockPixels alp(*bitmap);
311 , bitmap->rowBytes()
312 , bitmap->rowBytes()*height
313 , reinterpret_cast<BYTE*>(bitmap->getPixels()));