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

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

Issue 267293007: Fix rendering artifacts in pull-saveLayers-forward mode (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Fix bug in unit test Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/core/SkPictureStateTree.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
11 #include "SkPicture.h" 11 #include "SkPicture.h"
12 #include "SkTDArray.h" 12 #include "SkTDArray.h"
13 13
14 // This class encapsulates the GPU-backend-specific acceleration data 14 // This class encapsulates the GPU-backend-specific acceleration data
15 // for a single SkPicture 15 // for a single SkPicture
16 class GPUAccelData : public SkPicture::AccelData { 16 class GPUAccelData : public SkPicture::AccelData {
17 public: 17 public:
18 // Information about a given saveLayer in an SkPicture 18 // Information about a given saveLayer in an SkPicture
19 struct SaveLayerInfo { 19 struct SaveLayerInfo {
20 // True if the SaveLayerInfo is valid. False if either 'fOffset' is 20 // True if the SaveLayerInfo is valid. False if either 'fOffset' is
21 // invalid (due to a non-invertible CTM) or 'fPaint' is NULL (due 21 // invalid (due to a non-invertible CTM) or 'fPaint' is NULL (due
22 // to a non-copyable paint). 22 // to a non-copyable paint).
23 bool fValid; 23 bool fValid;
24 // The size of the saveLayer 24 // The size of the saveLayer
25 SkISize fSize; 25 SkISize fSize;
26 // The CTM in which this layer's draws must occur. It already incorporat es 26 // The CTM in which this layer's draws must occur. It already incorporat es
27 // the translation needed to map the layer's top-left point to the origi n. 27 // the translation needed to map the layer's top-left point to the origi n.
28 SkMatrix fCTM; 28 SkMatrix fCTM;
29 // The offset that needs to be passed to drawBitmap to correctly 29 // The offset that needs to be passed to drawBitmap to correctly
30 // position the pre-rendered layer. 30 // position the pre-rendered layer. It is in device space.
31 SkPoint fOffset; 31 SkIPoint fOffset;
32 // The paint to use on restore. NULL if the paint was not copyable (and 32 // The paint to use on restore. NULL if the paint was not copyable (and
33 // thus that this layer should not be pulled forward). 33 // thus that this layer should not be pulled forward).
34 const SkPaint* fPaint; 34 const SkPaint* fPaint;
35 // The ID of this saveLayer in the picture. 0 is an invalid ID. 35 // The ID of this saveLayer in the picture. 0 is an invalid ID.
36 size_t fSaveLayerOpID; 36 size_t fSaveLayerOpID;
37 // The ID of the matching restore in the picture. 0 is an invalid ID. 37 // The ID of the matching restore in the picture. 0 is an invalid ID.
38 size_t fRestoreOpID; 38 size_t fRestoreOpID;
39 // True if this saveLayer has at least one other saveLayer nested within it. 39 // True if this saveLayer has at least one other saveLayer nested within it.
40 // False otherwise. 40 // False otherwise.
41 bool fHasNestedLayers; 41 bool fHasNestedLayers;
(...skipping 28 matching lines...) Expand all
70 70
71 private: 71 private:
72 SkTDArray<SaveLayerInfo> fSaveLayerInfo; 72 SkTDArray<SaveLayerInfo> fSaveLayerInfo;
73 73
74 typedef SkPicture::AccelData INHERITED; 74 typedef SkPicture::AccelData INHERITED;
75 }; 75 };
76 76
77 void GatherGPUInfo(SkPicture* pict, GPUAccelData* accelData); 77 void GatherGPUInfo(SkPicture* pict, GPUAccelData* accelData);
78 78
79 #endif // GrPictureUtils_DEFINED 79 #endif // GrPictureUtils_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkPictureStateTree.cpp ('k') | src/gpu/GrPictureUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698