Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(702)

Side by Side Diff: src/core/SkMallocPixelRef.cpp

Issue 143073008: add installPixels (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/core/SkOrderedReadBuffer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/core/SkOrderedReadBuffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698