• Home
  • Raw
  • Download

Lines Matching refs:dstBpp

34 …void decode(uint8_t *dst, int x, int y, int dstW, int dstH, int dstPitch, int dstBpp, bool hasAlph…  in decode()
57 for(int i = 0; i < BlockWidth && (x + i) < dstW; i++, idxOffset++, dstOffset += dstBpp) in decode()
147 …void decode(uint8_t *dst, int x, int y, int dstW, int dstH, int dstPitch, int dstBpp, int channel,… in decode()
183 …dst[channel + (i * dstBpp) + (j * dstPitch)] = static_cast<uint8_t>(c[getIdx((j * BlockHeight) + i… in decode()
200 void decode(uint8_t *dst, int x, int y, int dstW, int dstH, int dstPitch, int dstBpp) const in decode()
206 for(int i = 0; i < BlockWidth && (x + i) < dstW; i++, dstRow += dstBpp) in decode()
913 …int dstX, int dstY, int dstWidth, int dstHeight, size_t dstPitch, size_t dstBpp, bool isSigned) co… in decode()
917 ASSERT(dstBpp == sizeof(Color)); in decode()
1054 auto out = reinterpret_cast<Color *>(dst + dstBpp * x + dstPitch * y); in decode()
1633 bool BC_Decoder::Decode(const uint8_t *src, uint8_t *dst, int w, int h, int dstPitch, int dstBpp, i… in Decode() argument
1639 const int dx = BlockWidth * dstBpp; in Decode()
1654 color->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isAlpha, false); in Decode()
1668 color->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isAlpha, true); in Decode()
1669 alpha->decode(dstRow, x, y, w, h, dstPitch, dstBpp); in Decode()
1683 color->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isAlpha, true); in Decode()
1684 alpha->decode(dstRow, x, y, w, h, dstPitch, dstBpp, 3, isSigned); in Decode()
1697 red->decode(dstRow, x, y, w, h, dstPitch, dstBpp, 0, isSigned); in Decode()
1711 red->decode(dstRow, x, y, w, h, dstPitch, dstBpp, 0, isSigned); in Decode()
1712 green->decode(dstRow, x, y, w, h, dstPitch, dstBpp, 1, isSigned); in Decode()
1725 block->decode(dstRow, x, y, w, h, dstPitch, dstBpp, isSigned); in Decode()