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

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

Issue 692583002: WIP: GPU-accelerated trapezoidal path renderer. Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rename GrTrapezoidalPathRenderer -> GrAAConcavePathRenderer; swap MSAA support for a coverage ramp. Created 5 years, 3 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
« no previous file with comments | « src/core/SkScan.cpp ('k') | src/core/SkScan_AntiPath.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 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 #ifndef SkScanPriv_DEFINED 10 #ifndef SkScanPriv_DEFINED
(...skipping 12 matching lines...) Expand all
23 23
24 private: 24 private:
25 SkRectClipBlitter fRectBlitter; 25 SkRectClipBlitter fRectBlitter;
26 SkRgnClipBlitter fRgnBlitter; 26 SkRgnClipBlitter fRgnBlitter;
27 SkBlitter* fBlitter; 27 SkBlitter* fBlitter;
28 const SkIRect* fClipRect; 28 const SkIRect* fClipRect;
29 }; 29 };
30 30
31 // clipRect == null means path is entirely inside the clip 31 // clipRect == null means path is entirely inside the clip
32 void sk_fill_path(const SkPath& path, const SkIRect* clipRect, 32 void sk_fill_path(const SkPath& path, const SkIRect* clipRect,
33 SkBlitter* blitter, int start_y, int stop_y, int shiftEdgesUp, 33 SkBlitter* blitter, SkTDArray<SkPoint>* points,
34 int start_y, int stop_y, int shiftEdgesUp,
34 const SkRegion& clipRgn); 35 const SkRegion& clipRgn);
35 36
36 // blit the rects above and below avoid, clipped to clip 37 // blit the rects above and below avoid, clipped to clip
37 void sk_blit_above(SkBlitter*, const SkIRect& avoid, const SkRegion& clip); 38 void sk_blit_above(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
38 void sk_blit_below(SkBlitter*, const SkIRect& avoid, const SkRegion& clip); 39 void sk_blit_below(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
39 40
40 #endif 41 #endif
OLDNEW
« no previous file with comments | « src/core/SkScan.cpp ('k') | src/core/SkScan_AntiPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698