HomeSort by relevance Sort by last modified time
    Searched refs:dstBpp (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/src/Renderer/
ETC_Decoder.hpp 37 /// @param dstBpp dst image bytes per pixel
40 static bool Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType);
ETC_Decoder.cpp 677 bool ETC_Decoder::Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType)
693 ETC2::DecodeBlock(sources, dstRow + (x * dstBpp), 1, x, y, dstW, dstH, dstPitch, inputType == ETC_R_SIGNED, true);
705 ETC2::DecodeBlock(sources, dstRow + (x * dstBpp), 2, x, y, dstW, dstH, dstPitch, inputType == ETC_RG_SIGNED, true);
716 sources[0]->decodeBlock(dstRow + (x * dstBpp), x, y, dstW, dstH, dstPitch, alphaValues, inputType == ETC_RGB_PUNCHTHROUGH_ALPHA);
731 sources[0]->decodeBlock(dstRow + (x * dstBpp), x, y, dstW, dstH, dstPitch, alphaValues, false);
  /frameworks/av/media/libstagefright/
FrameDecoder.cpp 47 int32_t dstBpp, bool metaOnly = false) {
78 tileWidth, tileHeight, rotationAngle, dstBpp, !metaOnly, iccSize);
120 int32_t *dstBpp) {
125 *dstBpp = 2;
131 *dstBpp = 4;
137 *dstBpp = 4;
153 int32_t dstBpp;
155 (android_pixel_format_t)colorFormat, &dstFormat, &dstBpp)) {
174 width, height, tileWidth, tileHeight, dstBpp, true /*metaOnly*/);
518 dstBpp());
    [all...]
  /frameworks/av/media/libstagefright/include/
FrameDecoder.h 82 int32_t dstBpp() const { return mDstBpp; }
  /external/skia/src/codec/
SkWebpCodec.cpp 620 const size_t dstBpp = dstInfo.bytesPerPixel();
621 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);
  /external/skqp/src/codec/
SkWebpCodec.cpp 620 const size_t dstBpp = SkColorTypeBytesPerPixel(dstInfo.colorType());
621 dst = SkTAddOffset<void>(dst, dstBpp * dstX + rowBytes * dstY);

Completed in 2346 milliseconds