OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SkMallocPixelRef.h" | 8 #include "SkMallocPixelRef.h" |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkFlattenableBuffers.h" | 10 #include "SkFlattenableBuffers.h" |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 } | 231 } |
232 | 232 |
233 if (buffer.readBool()) { | 233 if (buffer.readBool()) { |
234 fCTable = SkNEW_ARGS(SkColorTable, (buffer)); | 234 fCTable = SkNEW_ARGS(SkColorTable, (buffer)); |
235 } else { | 235 } else { |
236 fCTable = NULL; | 236 fCTable = NULL; |
237 } | 237 } |
238 | 238 |
239 this->setPreLocked(fStorage, fRB, fCTable); | 239 this->setPreLocked(fStorage, fRB, fCTable); |
240 } | 240 } |
| 241 |
| 242 /////////////////////////////////////////////////////////////////////////////// |
| 243 |
| 244 SkPixelRef* SkMallocPixelRef::PRFactory::create(const SkImageInfo& info, |
| 245 SkColorTable* ctable) { |
| 246 return SkMallocPixelRef::NewAllocate(info, info.minRowBytes(), ctable); |
| 247 } |
| 248 |
OLD | NEW |