OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |