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

  /external/skia/include/codec/
SkCodec.h 337 * startScanlineDecode() in order to return to decoding scanlines.
464 Result startScanlineDecode(const SkImageInfo& dstInfo, const Options* options);
467 * Simplified version of startScanlineDecode() that uses the default Options.
469 Result startScanlineDecode(const SkImageInfo& dstInfo) {
470 return this->startScanlineDecode(dstInfo, nullptr);
476 * Not valid to call before calling startScanlineDecode().
492 * Not valid to call before calling startScanlineDecode().
502 * Calling this function before calling startScanlineDecode().
549 * This is undefined before startScanlineDecode() is called.
    [all...]
  /external/skqp/include/codec/
SkCodec.h 337 * startScanlineDecode() in order to return to decoding scanlines.
464 Result startScanlineDecode(const SkImageInfo& dstInfo, const Options* options);
467 * Simplified version of startScanlineDecode() that uses the default Options.
469 Result startScanlineDecode(const SkImageInfo& dstInfo) {
470 return this->startScanlineDecode(dstInfo, nullptr);
476 * Not valid to call before calling startScanlineDecode().
492 * Not valid to call before calling startScanlineDecode().
502 * Calling this function before calling startScanlineDecode().
549 * This is undefined before startScanlineDecode() is called.
    [all...]
  /external/skia/src/codec/
SkIcoCodec.cpp 305 result = embeddedCodec->startScanlineDecode(dstInfo, &options);
347 // Note that calling startScanlineDecode will require an extra
356 if (embeddedCodec->startScanlineDecode(dstInfo) == kSuccess) {
379 // before startScanlineDecode()/startIncrementalDecode().
SkSampledCodec.cpp 107 // Although startScanlineDecode expects the bottom and top to match the
140 SkCodec::Result result = this->codec()->startScanlineDecode(scaledInfo,
218 // Although startScanlineDecode expects the bottom and top to match the
264 SkCodec::Result result = this->codec()->startScanlineDecode(nativeInfo,
SkCodec.cpp 197 // startScanlineDecode will need to be called before decoding scanlines.
458 // startScanlineDecode() to do a rewind.
465 SkCodec::Result SkCodec::startScanlineDecode(const SkImageInfo& info,
  /external/skqp/src/codec/
SkIcoCodec.cpp 305 result = embeddedCodec->startScanlineDecode(dstInfo, &options);
347 // Note that calling startScanlineDecode will require an extra
356 if (embeddedCodec->startScanlineDecode(dstInfo) == kSuccess) {
379 // before startScanlineDecode()/startIncrementalDecode().
SkSampledCodec.cpp 107 // Although startScanlineDecode expects the bottom and top to match the
140 SkCodec::Result result = this->codec()->startScanlineDecode(scaledInfo,
218 // Although startScanlineDecode expects the bottom and top to match the
264 SkCodec::Result result = this->codec()->startScanlineDecode(nativeInfo,
SkCodec.cpp 197 // startScanlineDecode will need to be called before decoding scanlines.
458 // startScanlineDecode() to do a rewind.
465 SkCodec::Result SkCodec::startScanlineDecode(const SkImageInfo& info,
  /external/skia/fuzz/
fuzz.cpp 293 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)) {
320 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)
343 const SkCodec::Result startResult = codec->startScanlineDecode(decodeInfo);
  /external/skqp/fuzz/
fuzz.cpp 269 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)) {
296 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)
319 const SkCodec::Result startResult = codec->startScanlineDecode(decodeInfo);
  /external/skia/tests/
CodecTest.cpp 307 // Need to call startScanlineDecode() first.
310 const SkCodec::Result startResult = codec->startScanlineDecode(info);
333 REPORTER_ASSERT(r, codec->startScanlineDecode(info) == SkCodec::kSuccess);
353 const auto partialStartResult = codec->startScanlineDecode(info, &options);
    [all...]
  /external/skqp/tests/
CodecTest.cpp 305 // Need to call startScanlineDecode() first.
308 const SkCodec::Result startResult = codec->startScanlineDecode(info);
331 REPORTER_ASSERT(r, codec->startScanlineDecode(info) == SkCodec::kSuccess);
351 const auto partialStartResult = codec->startScanlineDecode(info, &options);
    [all...]
  /external/skia/dm/
DMSrcSink.cpp 604 // which should work via startScanlineDecode
610 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)) {
636 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo, &options)) {
661 const SkCodec::Result startResult = codec->startScanlineDecode(decodeInfo);
693 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo, &options)) {
    [all...]
  /external/skqp/dm/
DMSrcSink.cpp 601 // which should work via startScanlineDecode
607 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)) {
633 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo, &options)) {
658 const SkCodec::Result startResult = codec->startScanlineDecode(decodeInfo);
690 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo, &options)) {
    [all...]

Completed in 1626 milliseconds