Lines Matching refs:fNegative
460 if (!fHost || !fInfo || !fNegative || !fDngStream) { in render()
472 std::unique_ptr<dng_negative> negative(fNegative.release()); in render()
581 fNegative.reset(fHost->Make_dng_negative()); in readDng()
582 fNegative->Parse(*fHost, *fDngStream, *fInfo); in readDng()
583 fNegative->PostParse(*fHost, *fDngStream, *fInfo); in readDng()
584 fNegative->SynchronizeMetadata(); in readDng()
587 if (fNegative->GetMosaicInfo() != nullptr) { in readDng()
588 cfaPatternSize = fNegative->GetMosaicInfo()->fCFAPatternSize; in readDng()
590 return this->init(static_cast<int>(fNegative->DefaultCropSizeH().As_real64()), in readDng()
591 static_cast<int>(fNegative->DefaultCropSizeV().As_real64()), in readDng()
606 std::unique_ptr<dng_negative> fNegative; member in SkDngImage