OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "SkBitmap.h" | 8 #include "SkBitmap.h" |
9 #include "SkChunkAlloc.h" | 9 #include "SkChunkAlloc.h" |
10 #include "SkGPipe.h" | 10 #include "SkGPipe.h" |
11 #include "SkPicture.h" | 11 #include "SkPicture.h" |
12 #include "SkTDArray.h" | 12 #include "SkTDArray.h" |
13 | 13 |
14 class SkCanvas; | 14 class SkCanvas; |
15 class SkMatrix; | 15 class SkMatrix; |
16 | 16 |
17 class PipeController : public SkGPipeController { | 17 class PipeController : public SkGPipeController { |
18 public: | 18 public: |
19 PipeController(SkCanvas* target, SkPicture::InstallPixelRefProc proc = NULL)
; | 19 PipeController(SkCanvas* target, SkPicture::InstallPixelRefProc proc = NULL)
; |
20 | 20 virtual ~PipeController(); |
21 virtual void* requestBlock(size_t minRequest, size_t* actual) SK_OVERRIDE; | 21 virtual void* requestBlock(size_t minRequest, size_t* actual) SK_OVERRIDE; |
22 virtual void notifyWritten(size_t bytes) SK_OVERRIDE; | 22 virtual void notifyWritten(size_t bytes) SK_OVERRIDE; |
23 protected: | 23 protected: |
24 const void* getData() { return (const char*) fBlock.get() + fBytesWritten; } | 24 const void* getData() { return (const char*) fBlock + fBytesWritten; } |
25 SkGPipeReader fReader; | 25 SkGPipeReader fReader; |
26 private: | 26 private: |
27 SkAutoMalloc fBlock; | 27 void* fBlock; |
28 size_t fBlockSize; | 28 size_t fBlockSize; |
29 size_t fBytesWritten; | 29 size_t fBytesWritten; |
30 SkGPipeReader::Status fStatus; | 30 SkGPipeReader::Status fStatus; |
31 }; | 31 }; |
32 | 32 |
33 //////////////////////////////////////////////////////////////////////////////// | 33 //////////////////////////////////////////////////////////////////////////////// |
34 | 34 |
35 class TiledPipeController : public PipeController { | 35 class TiledPipeController : public PipeController { |
36 public: | 36 public: |
37 TiledPipeController(const SkBitmap&, SkPicture::InstallPixelRefProc proc = N
ULL, | 37 TiledPipeController(const SkBitmap&, SkPicture::InstallPixelRefProc proc = N
ULL, |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 void* fBlock; | 78 void* fBlock; |
79 // Number of bytes that were written to fBlock. | 79 // Number of bytes that were written to fBlock. |
80 size_t fBytes; | 80 size_t fBytes; |
81 }; | 81 }; |
82 void* fBlock; | 82 void* fBlock; |
83 size_t fBytesWritten; | 83 size_t fBytesWritten; |
84 SkChunkAlloc fAllocator; | 84 SkChunkAlloc fAllocator; |
85 SkTDArray<PipeBlock> fBlockList; | 85 SkTDArray<PipeBlock> fBlockList; |
86 int fNumberOfReaders; | 86 int fNumberOfReaders; |
87 }; | 87 }; |
OLD | NEW |