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

Side by Side Diff: src/core/SkDeviceImageFilterProxy.h

Issue 719253002: rename filterTextFlags to disableLCD (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rename disableLCD to shouldDisableLCD Created 6 years, 1 month 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 | « src/core/SkDevice.cpp ('k') | src/gpu/SkGpuDevice.h » ('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 2012 The Android Open Source Project 2 * Copyright 2012 The Android Open Source Project
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 #ifndef SkDeviceImageFilterProxy_DEFINED 8 #ifndef SkDeviceImageFilterProxy_DEFINED
9 #define SkDeviceImageFilterProxy_DEFINED 9 #define SkDeviceImageFilterProxy_DEFINED
10 10
11 #include "SkImageFilter.h" 11 #include "SkImageFilter.h"
12 12
13 class SkDeviceImageFilterProxy : public SkImageFilter::Proxy { 13 class SkDeviceImageFilterProxy : public SkImageFilter::Proxy {
14 public: 14 public:
15 SkDeviceImageFilterProxy(SkBaseDevice* device) : fDevice(device) {} 15 SkDeviceImageFilterProxy(SkBaseDevice* device) : fDevice(device) {}
16 16
17 virtual SkBaseDevice* createDevice(int w, int h) SK_OVERRIDE { 17 virtual SkBaseDevice* createDevice(int w, int h) SK_OVERRIDE {
18 return fDevice->createCompatibleDeviceForImageFilter(SkImageInfo::MakeN3 2Premul(w, h)); 18 SkBaseDevice::CreateInfo cinfo(SkImageInfo::MakeN32Premul(w, h),
19 SkBaseDevice::kImageFilter_Usage,
20 kUnknown_SkPixelGeometry);
21 return fDevice->onCreateCompatibleDevice(cinfo);
19 } 22 }
20 virtual bool canHandleImageFilter(const SkImageFilter* filter) SK_OVERRIDE { 23 virtual bool canHandleImageFilter(const SkImageFilter* filter) SK_OVERRIDE {
21 return fDevice->canHandleImageFilter(filter); 24 return fDevice->canHandleImageFilter(filter);
22 } 25 }
23 virtual bool filterImage(const SkImageFilter* filter, const SkBitmap& src, 26 virtual bool filterImage(const SkImageFilter* filter, const SkBitmap& src,
24 const SkImageFilter::Context& ctx, 27 const SkImageFilter::Context& ctx,
25 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE { 28 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE {
26 return fDevice->filterImage(filter, src, ctx, result, offset); 29 return fDevice->filterImage(filter, src, ctx, result, offset);
27 } 30 }
28 31
29 private: 32 private:
30 SkBaseDevice* fDevice; 33 SkBaseDevice* fDevice;
31 }; 34 };
32 35
33 #endif 36 #endif
OLDNEW
« no previous file with comments | « src/core/SkDevice.cpp ('k') | src/gpu/SkGpuDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698