Lines Matching refs:alphaValues
119 …igned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaValues[4][4], bool pun… in decodeBlock()
132 decodeTBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
136 decodeHBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
140 decodePlanarBlock(dest, x, y, w, h, pitch, alphaValues); in decodeBlock()
144 decodeDifferentialBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
149 decodeIndividualBlock(dest, x, y, w, h, pitch, alphaValues, nonOpaquePunchThroughAlpha); in decodeBlock()
335 …igned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaValues[4][4], bool non… in decodeIndividualBlock()
345 …decodeIndividualOrDifferentialBlock(dest, x, y, w, h, pitch, r1, g1, b1, r2, g2, b2, alphaValues, … in decodeIndividualBlock()
348 …igned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaValues[4][4], bool non… in decodeDifferentialBlock()
358 …decodeIndividualOrDifferentialBlock(dest, x, y, w, h, pitch, r1, g1, b1, r2, g2, b2, alphaValues, … in decodeDifferentialBlock()
361 …t pitch, int r1, int g1, int b1, int r2, int g2, int b2, unsigned char alphaValues[4][4], bool non… in decodeIndividualOrDifferentialBlock()
421 if((x + 0) < w) color[0] = subblockColors0[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
422 if((x + 1) < w) color[1] = subblockColors0[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
423 if((x + 2) < w) color[2] = subblockColors0[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
424 if((x + 3) < w) color[3] = subblockColors0[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
431 if((x + 0) < w) color[0] = subblockColors1[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
432 if((x + 1) < w) color[1] = subblockColors1[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
433 if((x + 2) < w) color[2] = subblockColors1[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
434 if((x + 3) < w) color[3] = subblockColors1[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
443 if((x + 0) < w) color[0] = subblockColors0[getIndex(0, j)].addA(alphaValues[j][0]); in decodeIndividualOrDifferentialBlock()
444 if((x + 1) < w) color[1] = subblockColors0[getIndex(1, j)].addA(alphaValues[j][1]); in decodeIndividualOrDifferentialBlock()
445 if((x + 2) < w) color[2] = subblockColors1[getIndex(2, j)].addA(alphaValues[j][2]); in decodeIndividualOrDifferentialBlock()
446 if((x + 3) < w) color[3] = subblockColors1[getIndex(3, j)].addA(alphaValues[j][3]); in decodeIndividualOrDifferentialBlock()
457 …igned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaValues[4][4], bool non… in decodeTBlock()
484 if((x + 0) < w) color[0] = paintColors[getIndex(0, j)].addA(alphaValues[j][0]); in decodeTBlock()
485 if((x + 1) < w) color[1] = paintColors[getIndex(1, j)].addA(alphaValues[j][1]); in decodeTBlock()
486 if((x + 2) < w) color[2] = paintColors[getIndex(2, j)].addA(alphaValues[j][2]); in decodeTBlock()
487 if((x + 3) < w) color[3] = paintColors[getIndex(3, j)].addA(alphaValues[j][3]); in decodeTBlock()
497 …igned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaValues[4][4], bool non… in decodeHBlock()
524 if((x + 0) < w) color[0] = paintColors[getIndex(0, j)].addA(alphaValues[j][0]); in decodeHBlock()
525 if((x + 1) < w) color[1] = paintColors[getIndex(1, j)].addA(alphaValues[j][1]); in decodeHBlock()
526 if((x + 2) < w) color[2] = paintColors[getIndex(2, j)].addA(alphaValues[j][2]); in decodeHBlock()
527 if((x + 3) < w) color[3] = paintColors[getIndex(3, j)].addA(alphaValues[j][3]); in decodeHBlock()
537 …(unsigned char *dest, int x, int y, int w, int h, int pitch, unsigned char alphaValues[4][4]) const in decodePlanarBlock()
561 alphaValues[j][i]); in decodePlanarBlock()
653 …unsigned char alphaValues[4][4] = { { 255, 255, 255, 255 }, { 255, 255, 255, 255 }, { 255, 255, 25… in Decode() local
687 …sources[0]->decodeBlock(dstRow + (x * dstBpp), x, y, dstW, dstH, dstPitch, alphaValues, inputType … in Decode()
698 ETC2::DecodeBlock(&sources[0], &(alphaValues[0][0]), 1, x, y, dstW, dstH, 4, false); in Decode()
702 sources[0]->decodeBlock(dstRow + (x * dstBpp), x, y, dstW, dstH, dstPitch, alphaValues, false); in Decode()