Lines Matching refs:height
278 int width, int height, size_t rowBytes,
281 if (0 == width || 0 == height || (width % 4) != 0 || (height % 4) != 0) {
286 int blocksY = height >> 2;
465 int width, int height, size_t rowBytes) {
467 if (0 == width || 0 == height || (width % 4) != 0 || (height % 4) != 0) {
472 const int blocksY = height >> 2;
622 bool CompressA8ToR11EAC(uint8_t* dst, const uint8_t* src, int width, int height, size_t rowBytes) {
626 return compress_4x4_a8_to_64bit(dst, src, width, height, rowBytes, compress_r11eac_block);
630 return compress_a8_to_r11eac_fast(dst, src, width, height, rowBytes);
637 SkBlitter* CreateR11EACBlitter(int width, int height, void* outputBuffer,
640 if ((width % 4) != 0 || (height % 4) != 0) {
648 const int nBlocks = (width * height / 16); // 4x4 pixel blocks.
657 (width, height, outputBuffer);
660 void DecompressR11EAC(uint8_t* dst, int dstRowBytes, const uint8_t* src, int width, int height) {
661 for (int j = 0; j < height; j += 4) {