OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 29 matching lines...) Expand all Loading... |
40 , m_imageInfo(info) | 40 , m_imageInfo(info) |
41 , m_frameIndex(index) | 41 , m_frameIndex(index) |
42 , m_generationId(0) | 42 , m_generationId(0) |
43 { | 43 { |
44 } | 44 } |
45 | 45 |
46 DecodingImageGenerator::~DecodingImageGenerator() | 46 DecodingImageGenerator::~DecodingImageGenerator() |
47 { | 47 { |
48 } | 48 } |
49 | 49 |
50 SkData* DecodingImageGenerator::refEncodedData() | 50 SkData* DecodingImageGenerator::onRefEncodedData() |
51 { | 51 { |
52 // FIXME: If the image has been clipped or scaled, do not return the origina
l | 52 // FIXME: If the image has been clipped or scaled, do not return the origina
l |
53 // encoded data, since on playback it will not be known how the clipping/sca
ling | 53 // encoded data, since on playback it will not be known how the clipping/sca
ling |
54 // was done. | 54 // was done. |
55 RefPtr<SharedBuffer> buffer = nullptr; | 55 RefPtr<SharedBuffer> buffer = nullptr; |
56 bool allDataReceived = false; | 56 bool allDataReceived = false; |
57 m_frameGenerator->copyData(&buffer, &allDataReceived); | 57 m_frameGenerator->copyData(&buffer, &allDataReceived); |
58 if (buffer && allDataReceived) { | 58 if (buffer && allDataReceived) |
59 return SkData::NewWithCopy(buffer->data(), buffer->size()); | 59 return SkData::NewWithCopy(buffer->data(), buffer->size()); |
60 } | |
61 return 0; | 60 return 0; |
62 } | 61 } |
63 | 62 |
64 bool DecodingImageGenerator::getInfo(SkImageInfo* info) | 63 bool DecodingImageGenerator::onGetInfo(SkImageInfo* info) |
65 { | 64 { |
66 *info = m_imageInfo; | 65 *info = m_imageInfo; |
67 return true; | 66 return true; |
68 } | 67 } |
69 | 68 |
70 bool DecodingImageGenerator::getPixels(const SkImageInfo& info, void* pixels, si
ze_t rowBytes) | 69 bool DecodingImageGenerator::onGetPixels(const SkImageInfo& info, void* pixels,
size_t rowBytes, SkPMColor ctable[], int* ctableCount) |
71 { | 70 { |
72 TRACE_EVENT1("webkit", "DecodingImageGenerator::getPixels", "index", static_
cast<int>(m_frameIndex)); | 71 TRACE_EVENT1("webkit", "DecodingImageGenerator::getPixels", "index", static_
cast<int>(m_frameIndex)); |
73 | 72 |
74 // Implementation doesn't support scaling yet so make sure we're not given | 73 // Implementation doesn't support scaling yet so make sure we're not given |
75 // a different size. | 74 // a different size. |
76 ASSERT(info.fWidth == m_imageInfo.fWidth); | 75 ASSERT(info.fWidth == m_imageInfo.fWidth); |
77 ASSERT(info.fHeight == m_imageInfo.fHeight); | 76 ASSERT(info.fHeight == m_imageInfo.fHeight); |
78 ASSERT(info.fColorType == m_imageInfo.fColorType); | 77 ASSERT(info.fColorType == m_imageInfo.fColorType); |
79 ASSERT(info.fAlphaType == m_imageInfo.fAlphaType); | 78 ASSERT(info.fAlphaType == m_imageInfo.fAlphaType); |
80 PlatformInstrumentation::willDecodeLazyPixelRef(m_generationId); | 79 PlatformInstrumentation::willDecodeLazyPixelRef(m_generationId); |
81 bool decoded = m_frameGenerator->decodeAndScale(m_imageInfo, m_frameIndex, p
ixels, rowBytes); | 80 bool decoded = m_frameGenerator->decodeAndScale(m_imageInfo, m_frameIndex, p
ixels, rowBytes); |
82 PlatformInstrumentation::didDecodeLazyPixelRef(); | 81 PlatformInstrumentation::didDecodeLazyPixelRef(); |
83 return decoded; | 82 return decoded; |
84 } | 83 } |
85 | 84 |
86 } // namespace blink | 85 } // namespace blink |
OLD | NEW |