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

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

Issue 452923002: Remove external SkImageFilter cache, and rename UniqueIDCache -> Cache. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « include/gpu/SkGpuDevice.h ('k') | src/core/SkCanvas.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 2013 Google Inc. 2 * Copyright 2013 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 "SkBitmapDevice.h" 8 #include "SkBitmapDevice.h"
9 #include "SkConfig8888.h" 9 #include "SkConfig8888.h"
10 #include "SkDraw.h" 10 #include "SkDraw.h"
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 *info = bmInfo; 360 *info = bmInfo;
361 } 361 }
362 if (rowBytes) { 362 if (rowBytes) {
363 *rowBytes = fBitmap.rowBytes(); 363 *rowBytes = fBitmap.rowBytes();
364 } 364 }
365 return fBitmap.getPixels(); 365 return fBitmap.getPixels();
366 } 366 }
367 return NULL; 367 return NULL;
368 } 368 }
369 369
370 SkImageFilter::UniqueIDCache* SkBitmapDevice::getImageFilterCache() { 370 SkImageFilter::Cache* SkBitmapDevice::getImageFilterCache() {
371 SkImageFilter::UniqueIDCache* cache = SkImageFilter::UniqueIDCache::Get(); 371 SkImageFilter::Cache* cache = SkImageFilter::Cache::Get();
372 cache->ref(); 372 cache->ref();
373 return cache; 373 return cache;
374 } 374 }
375 375
376 /////////////////////////////////////////////////////////////////////////////// 376 ///////////////////////////////////////////////////////////////////////////////
377 377
378 bool SkBitmapDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) { 378 bool SkBitmapDevice::filterTextFlags(const SkPaint& paint, TextFlags* flags) {
379 if (!paint.isLCDRenderText() || !paint.isAntiAlias()) { 379 if (!paint.isLCDRenderText() || !paint.isAntiAlias()) {
380 // we're cool with the paint as is 380 // we're cool with the paint as is
381 return false; 381 return false;
382 } 382 }
383 383
384 if (kN32_SkColorType != fBitmap.colorType() || 384 if (kN32_SkColorType != fBitmap.colorType() ||
385 paint.getRasterizer() || 385 paint.getRasterizer() ||
386 paint.getPathEffect() || 386 paint.getPathEffect() ||
387 paint.isFakeBoldText() || 387 paint.isFakeBoldText() ||
388 paint.getStyle() != SkPaint::kFill_Style || 388 paint.getStyle() != SkPaint::kFill_Style ||
389 !SkXfermode::IsMode(paint.getXfermode(), SkXfermode::kSrcOver_Mode)) { 389 !SkXfermode::IsMode(paint.getXfermode(), SkXfermode::kSrcOver_Mode)) {
390 // turn off lcd 390 // turn off lcd
391 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag; 391 flags->fFlags = paint.getFlags() & ~SkPaint::kLCDRenderText_Flag;
392 flags->fHinting = paint.getHinting(); 392 flags->fHinting = paint.getHinting();
393 return true; 393 return true;
394 } 394 }
395 // we're cool with the paint as is 395 // we're cool with the paint as is
396 return false; 396 return false;
397 } 397 }
OLDNEW
« no previous file with comments | « include/gpu/SkGpuDevice.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698