Lines Matching refs:rowBytes
62 int w, int h, int rowBytes){
69 const char* curLine = &bin_bmp[y * rowBytes];
113 const char* bin_bmp, int w, int h, int rowBytes){
116 SkPathUtils::BitsToPath_Path(&path, bin_bmp, w, h, rowBytes);
123 const char* bin_bmp, int w, int h, int rowBytes){
126 SkPathUtils::BitsToPath_Region(&path, bin_bmp, w, h, rowBytes);
134 const int h = 8, rowBytes = 4;
136 char bits[ h * rowBytes ];
143 fill_random_bits( h * rowBytes, binBmp); // generate random bitmap
149 binary_to_skbitmap(binBmp, &bmpTruth, w[i], h, rowBytes);
151 test_path(reporter, &bmpTruth, binBmp, w[i], h, rowBytes);
152 test_region(reporter, &bmpTruth, binBmp, w[i], h, rowBytes);