Home | History | Annotate | Download | only in tests

Lines Matching refs:rowBytes

63                          int w, int h, int rowBytes){
70 const char* curLine = &bin_bmp[y * rowBytes];
114 const char* bin_bmp, int w, int h, int rowBytes){
117 SkPathUtils::BitsToPath_Path(&path, bin_bmp, w, h, rowBytes);
124 const char* bin_bmp, int w, int h, int rowBytes){
127 SkPathUtils::BitsToPath_Region(&path, bin_bmp, w, h, rowBytes);
135 const int h = 8, rowBytes = 4;
137 char bits[ h * rowBytes ];
144 fill_random_bits( h * rowBytes, binBmp); // generate random bitmap
150 binary_to_skbitmap(binBmp, &bmpTruth, w[i], h, rowBytes);
152 test_path(reporter, &bmpTruth, binBmp, w[i], h, rowBytes);
153 test_region(reporter, &bmpTruth, binBmp, w[i], h, rowBytes);