OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkBmpCodec.h" | 8 #include "SkBmpCodec.h" |
9 #include "SkCodec.h" | 9 #include "SkCodec.h" |
10 #include "SkCodecPriv.h" | 10 #include "SkCodecPriv.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 SkCodec* SkCodec::NewFromData(SkData* data, SkPngChunkReader* reader) { | 110 SkCodec* SkCodec::NewFromData(SkData* data, SkPngChunkReader* reader) { |
111 if (!data) { | 111 if (!data) { |
112 return nullptr; | 112 return nullptr; |
113 } | 113 } |
114 return NewFromStream(new SkMemoryStream(data), reader); | 114 return NewFromStream(new SkMemoryStream(data), reader); |
115 } | 115 } |
116 | 116 |
117 SkCodec::SkCodec(int width, int height, const SkEncodedInfo& info, SkStream* str
eam, | 117 SkCodec::SkCodec(int width, int height, const SkEncodedInfo& info, SkStream* str
eam, |
118 sk_sp<SkColorSpace> colorSpace, Origin origin) | 118 sk_sp<SkColorSpace> colorSpace, Origin origin) |
119 : fEncodedInfo(info) | 119 : fEncodedInfo(info) |
120 , fSrcInfo(info.makeImageInfo(width, height, colorSpace)) | 120 , fSrcInfo(info.makeImageInfo(width, height, std::move(colorSpace))) |
121 , fStream(stream) | 121 , fStream(stream) |
122 , fNeedsRewind(false) | 122 , fNeedsRewind(false) |
123 , fColorSpace(std::move(colorSpace)) | |
124 , fOrigin(origin) | 123 , fOrigin(origin) |
125 , fDstInfo() | 124 , fDstInfo() |
126 , fOptions() | 125 , fOptions() |
127 , fCurrScanline(-1) | 126 , fCurrScanline(-1) |
128 {} | 127 {} |
129 | 128 |
130 SkCodec::~SkCodec() {} | 129 SkCodec::~SkCodec() {} |
131 | 130 |
132 bool SkCodec::rewindIfNeeded() { | 131 bool SkCodec::rewindIfNeeded() { |
133 if (!fStream) { | 132 if (!fStream) { |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 SkASSERT(1 == linesRequested || this->getInfo().height() == linesReq
uested); | 381 SkASSERT(1 == linesRequested || this->getInfo().height() == linesReq
uested); |
383 const SkImageInfo fillInfo = info.makeWH(fillWidth, 1); | 382 const SkImageInfo fillInfo = info.makeWH(fillWidth, 1); |
384 for (int srcY = linesDecoded; srcY < linesRequested; srcY++) { | 383 for (int srcY = linesDecoded; srcY < linesRequested; srcY++) { |
385 fillDst = SkTAddOffset<void>(dst, this->outputScanline(srcY) * r
owBytes); | 384 fillDst = SkTAddOffset<void>(dst, this->outputScanline(srcY) * r
owBytes); |
386 fill_proc(fillInfo, fillDst, rowBytes, fillValue, zeroInit, samp
ler); | 385 fill_proc(fillInfo, fillDst, rowBytes, fillValue, zeroInit, samp
ler); |
387 } | 386 } |
388 break; | 387 break; |
389 } | 388 } |
390 } | 389 } |
391 } | 390 } |
OLD | NEW |