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

Side by Side Diff: src/image/SkSurface_Gpu.h

Issue 792923002: Apply the layer's image filter to the hoisted image (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix cast Created 6 years 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/gpu/SkGpuDevice.cpp ('k') | src/image/SkSurface_Gpu.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkSurface_Gpu_DEFINED
9 #define SkSurface_Gpu_DEFINED
10
11 #include "SkSurface_Base.h"
12
13 #if SK_SUPPORT_GPU
14
15 class SkGpuDevice;
16
17 class SkSurface_Gpu : public SkSurface_Base {
18 public:
19 SK_DECLARE_INST_COUNT(SkSurface_Gpu)
20
21 SkSurface_Gpu(GrRenderTarget*, const SkSurfaceProps*, bool doClear);
22 virtual ~SkSurface_Gpu();
23
24 virtual SkCanvas* onNewCanvas() SK_OVERRIDE;
25 virtual SkSurface* onNewSurface(const SkImageInfo&) SK_OVERRIDE;
26 virtual SkImage* onNewImageSnapshot() SK_OVERRIDE;
27 virtual void onDraw(SkCanvas*, SkScalar x, SkScalar y,
28 const SkPaint*) SK_OVERRIDE;
29 virtual void onCopyOnWrite(ContentChangeMode) SK_OVERRIDE;
30 virtual void onDiscard() SK_OVERRIDE;
31
32 SkGpuDevice* getDevice() { return fDevice; }
33
34 private:
35 SkGpuDevice* fDevice;
36
37 typedef SkSurface_Base INHERITED;
38 };
39
40 #endif // SK_SUPPORT_GPU
41
42 #endif // SkSurface_Gpu_DEFINED
OLDNEW
« no previous file with comments | « src/gpu/SkGpuDevice.cpp ('k') | src/image/SkSurface_Gpu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698