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

Side by Side Diff: src/gpu/GrPictureUtils.h

Issue 639863005: Track nested picture xform state for layer hoisting (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rename variable (fInitialMat -> fPreMat) 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/gpu/GrLayerHoister.cpp ('k') | src/gpu/GrPictureUtils.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 2014 Google Inc. 2 * Copyright 2014 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 #ifndef GrPictureUtils_DEFINED 8 #ifndef GrPictureUtils_DEFINED
9 #define GrPictureUtils_DEFINED 9 #define GrPictureUtils_DEFINED
10 10
(...skipping 10 matching lines...) Expand all
21 SaveLayerInfo() : fPicture(NULL), fPaint(NULL) {} 21 SaveLayerInfo() : fPicture(NULL), fPaint(NULL) {}
22 ~SaveLayerInfo() { SkSafeUnref(fPicture); SkDELETE(fPaint); } 22 ~SaveLayerInfo() { SkSafeUnref(fPicture); SkDELETE(fPaint); }
23 23
24 // The picture owning the layer. If the owning picture is the top-most 24 // The picture owning the layer. If the owning picture is the top-most
25 // one (i.e., the picture for which this GrAccelData was created) then 25 // one (i.e., the picture for which this GrAccelData was created) then
26 // this pointer is NULL. If it is a nested picture then the pointer 26 // this pointer is NULL. If it is a nested picture then the pointer
27 // is non-NULL and owns a ref on the picture. 27 // is non-NULL and owns a ref on the picture.
28 const SkPicture* fPicture; 28 const SkPicture* fPicture;
29 // The device space bounds of this layer. 29 // The device space bounds of this layer.
30 SkIRect fBounds; 30 SkIRect fBounds;
31 // The matrix state in which this layer's draws must occur. It does not 31 // The pre-matrix begins as the identity and accumulates the transforms
32 // include the translation needed to map the layer's top-left point to t he origin. 32 // of the containing SkPictures (if any). This matrix state has to be
33 SkMatrix fOriginXform; 33 // part of the initial matrix during replay so that it will be
34 // preserved across setMatrix calls.
35 SkMatrix fPreMat;
36 // The matrix state (in the leaf picture) in which this layer's draws
37 // must occur. It will/can be overridden by setMatrix calls in the
38 // layer itself. It does not include the translation needed to map the
39 // layer's top-left point to the origin (which must be part of the
40 // initial matrix).
41 SkMatrix fLocalMat;
34 // The paint to use on restore. Can be NULL since it is optional. 42 // The paint to use on restore. Can be NULL since it is optional.
35 const SkPaint* fPaint; 43 const SkPaint* fPaint;
36 // The ID of this saveLayer in the picture. 0 is an invalid ID. 44 // The ID of this saveLayer in the picture. 0 is an invalid ID.
37 size_t fSaveLayerOpID; 45 size_t fSaveLayerOpID;
38 // The ID of the matching restore in the picture. 0 is an invalid ID. 46 // The ID of the matching restore in the picture. 0 is an invalid ID.
39 size_t fRestoreOpID; 47 size_t fRestoreOpID;
40 // True if this saveLayer has at least one other saveLayer nested within it. 48 // True if this saveLayer has at least one other saveLayer nested within it.
41 // False otherwise. 49 // False otherwise.
42 bool fHasNestedLayers; 50 bool fHasNestedLayers;
43 // True if this saveLayer is nested within another. False otherwise. 51 // True if this saveLayer is nested within another. False otherwise.
(...skipping 20 matching lines...) Expand all
64 72
65 private: 73 private:
66 SkTArray<SaveLayerInfo, true> fSaveLayerInfo; 74 SkTArray<SaveLayerInfo, true> fSaveLayerInfo;
67 75
68 typedef SkPicture::AccelData INHERITED; 76 typedef SkPicture::AccelData INHERITED;
69 }; 77 };
70 78
71 const GrAccelData* GPUOptimize(const SkPicture* pict); 79 const GrAccelData* GPUOptimize(const SkPicture* pict);
72 80
73 #endif // GrPictureUtils_DEFINED 81 #endif // GrPictureUtils_DEFINED
OLDNEW
« no previous file with comments | « src/gpu/GrLayerHoister.cpp ('k') | src/gpu/GrPictureUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698