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 #ifndef SkCodec_wbmp_DEFINED | 8 #ifndef SkCodec_wbmp_DEFINED |
9 #define SkCodec_wbmp_DEFINED | 9 #define SkCodec_wbmp_DEFINED |
10 | 10 |
11 #include "SkCodec.h" | 11 #include "SkCodec.h" |
12 #include "SkScanlineDecoder.h" | |
12 | 13 |
13 class SkWbmpCodec final : public SkCodec { | 14 class SkWbmpCodec final : public SkCodec { |
14 public: | 15 public: |
15 static bool IsWbmp(SkStream*); | 16 static bool IsWbmp(SkStream*); |
16 static SkCodec* NewFromStream(SkStream*); | 17 static SkCodec* NewFromStream(SkStream*); |
18 | |
19 typedef void (*ExpandProc)(uint8_t*, const uint8_t*, int); | |
scroggo
2015/07/27 14:16:45
I don't see why this needs to be public.
msarett
2015/07/27 23:42:30
This has been removed.
| |
17 protected: | 20 protected: |
18 SkEncodedFormat onGetEncodedFormat() const override; | 21 SkEncodedFormat onGetEncodedFormat() const override; |
19 Result onGetPixels(const SkImageInfo&, void*, size_t, | 22 Result onGetPixels(const SkImageInfo&, void*, size_t, |
20 const Options&, SkPMColor[], int*) override; | 23 const Options&, SkPMColor[], int*) override; |
24 SkScanlineDecoder* onGetScanlineDecoder(const SkImageInfo& dstInfo, | |
25 const Options& options, SkPMColor ctable[], int* ctableCount); | |
scroggo
2015/07/27 14:16:45
override?
msarett
2015/07/27 23:42:30
Done.
| |
21 private: | 26 private: |
27 bool setExpandProc(SkColorType colorType, SkPMColor* ctable, int* ctableCoun t); | |
scroggo
2015/07/27 14:16:45
It is weird to me that this function is called "se
emmaleer
2015/07/27 14:41:37
Could you add a comment about what this function d
msarett
2015/07/27 23:42:30
This has been replaced by initializeSwizzler().
| |
22 SkWbmpCodec(const SkImageInfo&, SkStream*); | 28 SkWbmpCodec(const SkImageInfo&, SkStream*); |
29 | |
30 ExpandProc fProc; | |
scroggo
2015/07/27 14:16:45
Does fProc need to be a member? It looks like it i
msarett
2015/07/27 23:42:30
I use this pattern to create the swizzler.
| |
31 | |
32 friend class SkWbmpScanlineDecoder; | |
23 typedef SkCodec INHERITED; | 33 typedef SkCodec INHERITED; |
24 }; | 34 }; |
25 | 35 |
26 #endif // SkCodec_wbmp_DEFINED | 36 #endif // SkCodec_wbmp_DEFINED |
OLD | NEW |