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

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

Issue 718443002: Change where layer hoisting data is gathered (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix no-GPU build 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/GrPictureUtils.cpp ('k') | src/gpu/SkGpuDevice.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 /* 2 /*
3 * Copyright 2010 Google Inc. 3 * Copyright 2010 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE; 114 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE;
115 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, 115 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
116 const SkImageFilter::Context&, 116 const SkImageFilter::Context&,
117 SkBitmap*, SkIPoint*) SK_OVERRIDE; 117 SkBitmap*, SkIPoint*) SK_OVERRIDE;
118 118
119 protected: 119 protected:
120 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OV ERRIDE; 120 virtual bool onReadPixels(const SkImageInfo&, void*, size_t, int, int) SK_OV ERRIDE;
121 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int ) SK_OVERRIDE; 121 virtual bool onWritePixels(const SkImageInfo&, const void*, size_t, int, int ) SK_OVERRIDE;
122 122
123 /** PRIVATE / EXPERIMENTAL -- do not call */ 123 /** PRIVATE / EXPERIMENTAL -- do not call */
124 virtual void EXPERIMENTAL_optimize(const SkPicture* picture) SK_OVERRIDE;
125 /** PRIVATE / EXPERIMENTAL -- do not call */
126 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* pic ture, 124 virtual bool EXPERIMENTAL_drawPicture(SkCanvas* canvas, const SkPicture* pic ture,
127 const SkMatrix*, const SkPaint*) SK_OV ERRIDE; 125 const SkMatrix*, const SkPaint*) SK_OV ERRIDE;
128 126
129 private: 127 private:
130 GrContext* fContext; 128 GrContext* fContext;
131 129
132 GrSkDrawProcs* fDrawProcs; 130 GrSkDrawProcs* fDrawProcs;
133 131
134 GrClipData fClipData; 132 GrClipData fClipData;
135 133
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 bool bicubic); 194 bool bicubic);
197 195
198 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint); 196 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint);
199 197
200 static SkPicture::AccelData::Key ComputeAccelDataKey(); 198 static SkPicture::AccelData::Key ComputeAccelDataKey();
201 199
202 typedef SkBaseDevice INHERITED; 200 typedef SkBaseDevice INHERITED;
203 }; 201 };
204 202
205 #endif 203 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrPictureUtils.cpp ('k') | src/gpu/SkGpuDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698