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 "SubsetSingleBench.h" | 8 #include "SubsetSingleBench.h" |
9 #include "SubsetBenchPriv.h" | 9 #include "SubsetBenchPriv.h" |
10 #include "SkData.h" | 10 #include "SkData.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 void SubsetSingleBench::onDraw(const int n, SkCanvas* canvas) { | 60 void SubsetSingleBench::onDraw(const int n, SkCanvas* canvas) { |
61 // When the color type is kIndex8, we will need to store the color table. I
f it is | 61 // When the color type is kIndex8, we will need to store the color table. I
f it is |
62 // used, it will be initialized by the codec. | 62 // used, it will be initialized by the codec. |
63 int colorCount; | 63 int colorCount; |
64 SkPMColor colors[256]; | 64 SkPMColor colors[256]; |
65 if (fUseCodec) { | 65 if (fUseCodec) { |
66 for (int count = 0; count < n; count++) { | 66 for (int count = 0; count < n; count++) { |
67 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(fStream->duplica
te())); | 67 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(fStream->duplica
te())); |
68 const SkImageInfo info = codec->getInfo().makeColorType(fColorType); | 68 const SkImageInfo info = codec->getInfo().makeColorType(fColorType); |
69 SkAutoTDeleteArray<uint8_t> row(SkNEW_ARRAY(uint8_t, info.minRowByte
s())); | 69 SkAutoTDeleteArray<uint8_t> row(SkNEW_ARRAY(uint8_t, info.minRowByte
s())); |
70 SkScanlineDecoder* scanlineDecoder = codec->getScanlineDecoder( | 70 SkAutoTDelete<SkScanlineDecoder> scanlineDecoder(codec->getScanlineD
ecoder( |
71 info, NULL, colors, &colorCount); | 71 info, NULL, colors, &colorCount)); |
72 | 72 |
73 SkBitmap bitmap; | 73 SkBitmap bitmap; |
74 SkImageInfo subsetInfo = info.makeWH(fSubsetWidth, fSubsetHeight); | 74 SkImageInfo subsetInfo = info.makeWH(fSubsetWidth, fSubsetHeight); |
75 alloc_pixels(&bitmap, subsetInfo, colors, colorCount); | 75 alloc_pixels(&bitmap, subsetInfo, colors, colorCount); |
76 | 76 |
77 scanlineDecoder->skipScanlines(fOffsetTop); | 77 scanlineDecoder->skipScanlines(fOffsetTop); |
78 uint32_t bpp = info.bytesPerPixel(); | 78 uint32_t bpp = info.bytesPerPixel(); |
79 for (uint32_t y = 0; y < fSubsetHeight; y++) { | 79 for (uint32_t y = 0; y < fSubsetHeight; y++) { |
80 scanlineDecoder->getScanlines(row.get(), 1, 0); | 80 scanlineDecoder->getScanlines(row.get(), 1, 0); |
81 memcpy(bitmap.getAddr(0, y), row.get() + fOffsetLeft * bpp, | 81 memcpy(bitmap.getAddr(0, y), row.get() + fOffsetLeft * bpp, |
82 fSubsetWidth * bpp); | 82 fSubsetWidth * bpp); |
83 } | 83 } |
84 } | 84 } |
85 } else { | 85 } else { |
86 for (int count = 0; count < n; count++) { | 86 for (int count = 0; count < n; count++) { |
87 SkAutoTDelete<SkImageDecoder> decoder(SkImageDecoder::Factory(fStrea
m)); | 87 SkAutoTDelete<SkImageDecoder> decoder(SkImageDecoder::Factory(fStrea
m)); |
88 int width, height; | 88 int width, height; |
89 decoder->buildTileIndex(fStream->duplicate(), &width, &height); | 89 decoder->buildTileIndex(fStream->duplicate(), &width, &height); |
90 SkBitmap bitmap; | 90 SkBitmap bitmap; |
91 SkIRect rect = SkIRect::MakeXYWH(fOffsetLeft, fOffsetTop, fSubsetWid
th, | 91 SkIRect rect = SkIRect::MakeXYWH(fOffsetLeft, fOffsetTop, fSubsetWid
th, |
92 fSubsetHeight); | 92 fSubsetHeight); |
93 decoder->decodeSubset(&bitmap, rect, fColorType); | 93 decoder->decodeSubset(&bitmap, rect, fColorType); |
94 } | 94 } |
95 } | 95 } |
96 } | 96 } |
OLD | NEW |