Home | History | Annotate | Download | only in utils

Lines Matching refs:blockDimY

317 static inline void write_constant_color(uint8_t* dst, int blockDimX, int blockDimY,
319 for (int y = 0; y < blockDimY; ++y) {
330 static inline void write_error_color(uint8_t* dst, int blockDimX, int blockDimY,
338 write_constant_color(dst, blockDimX, blockDimY, dstRowBytes, kASTCErrorColor);
2081 int width, int height, int blockDimX, int blockDimY) {
2087 ASTCDecompressionData data(blockDimX, blockDimY);
2088 for (int y = 0; y < height; y += blockDimY) {
2089 dst -= blockDimY * dstRowBytes;