diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-10-27 12:34:25 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-10-27 12:34:25 +0000 |
commit | 289533ada623f2238a83771eec977f204f75994f (patch) | |
tree | b56c821eebf2b758425d4b731e9619da0cc35e13 /include/gpu | |
parent | 1e7281675dad0d3c18986c178b995a5c1154cc16 (diff) |
Don't use GrDrawTarget's AA state bit to convey whether to do custom-aa
Review URL: http://codereview.appspot.com/5314061/
git-svn-id: http://skia.googlecode.com/svn/trunk@2539 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu')
-rw-r--r-- | include/gpu/GrContext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index 4a1f1da8c4..f980702dd6 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -585,9 +585,9 @@ private: GrDrawTarget* prepareToDraw(const GrPaint& paint, DrawCategory drawType); - GrPathRenderer* getPathRenderer(const GrDrawTarget* target, - const GrPath& path, - GrPathFill fill); + GrPathRenderer* getPathRenderer(const GrPath& path, + GrPathFill fill, + bool antiAlias); struct OffscreenRecord; |