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

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

Issue 1579323002: Add SkSpecialImage & SkSpecialSurface classes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address code review comments Created 4 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
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 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 SkSpecialSurface_DEFINED
9 #define SkSpecialSurface_DEFINED
10
11 #include "SkRefCnt.h"
12 #include "SkSurfaceProps.h"
13
14 class GrContext;
15 struct GrSurfaceDesc;
16 class SkCanvas;
17 struct SkImageInfo;
18 class SkSpecialImage;
19
20 /**
21 * SkSpecialSurface is a restricted form of SkSurface solely for internal use. I t differs
22 * from SkSurface in that:
23 * - it can be backed by GrTextures larger than [ fWidth, fHeight ]
24 * - it can't be used for tiling
25 * - it becomes inactive once a snapshot of it is taken (i.e., no copy-on-wr ite)
26 * - it has no generation ID
27 */
28 class SkSpecialSurface : public SkRefCnt {
29 public:
30 const SkSurfaceProps& props() const { return fProps; }
31 const SkIRect& activeRect() const { return fActiveRect; }
32
33 /**
34 * Return a canvas that will draw into this surface. This will always
35 * return the same canvas for a given surface, and is managed/owned by the
36 * surface.
37 *
38 * The canvas will be invalid after 'newImageSnapshot' is called.
39 */
40 SkCanvas* getCanvas();
41
42 /**
43 * Returns an image of the current state of the surface pixels up to this
44 * point. The canvas returned by 'getCanvas' becomes invalidated by this
45 * call and no more drawing to this surface is allowed.
46 */
47 SkSpecialImage* newImageSnapshot();
48
49 /**
50 * Use an existing (renderTarget-capable) GrTexture as the backing store.
51 */
52 static SkSpecialSurface* NewGpu(const SkIRect& activeRect, GrTexture*,
53 const SkSurfaceProps* = nullptr);
54
55 /**
56 * Allocate a new GPU-backed SkSpecialSurface. If the requested surface can not
57 * be created, nullptr will be returned.
58 */
59 static SkSpecialSurface* NewGpu(GrContext*, const GrSurfaceDesc&,
60 const SkSurfaceProps* = nullptr);
61
62 /**
63 * Return a new CPU-backed surface, with the memory for the pixels automati cally
64 * allocated.
65 *
66 * If the requested surface cannot be created, or the request is not a
67 * supported configuration, nullptr will be returned.
68 */
69 static SkSpecialSurface* NewRaster(const SkImageInfo&, const SkSurfaceProps* = nullptr);
70
71 protected:
72 SkSpecialSurface(const SkIRect& activeRect, const SkSurfaceProps*);
73
74 private:
75 const SkSurfaceProps fProps;
76 const SkIRect fActiveRect;
77
78 typedef SkRefCnt INHERITED;
79 };
80
81 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698