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

Side by Side Diff: src/gpu/text/GrStencilAndCoverTextContext.cpp

Issue 2165283002: Remove DrawFace enum from GrPipelineBuilder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: try again Created 4 years, 5 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/gpu/text/GrBatchFontCache.h ('k') | src/gpu/vk/GrVkPipeline.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 #include "GrStencilAndCoverTextContext.h" 8 #include "GrStencilAndCoverTextContext.h"
9 #include "GrAtlasTextContext.h" 9 #include "GrAtlasTextContext.h"
10 #include "GrContext.h" 10 #include "GrContext.h"
11 #include "GrDrawContext.h" 11 #include "GrDrawContext.h"
12 #include "GrPath.h" 12 #include "GrPath.h"
13 #include "GrPathRange.h" 13 #include "GrPathRange.h"
14 #include "GrPipelineBuilder.h"
14 #include "GrResourceProvider.h" 15 #include "GrResourceProvider.h"
15 #include "GrTextUtils.h" 16 #include "GrTextUtils.h"
16 #include "SkAutoKern.h" 17 #include "SkAutoKern.h"
17 #include "SkDraw.h" 18 #include "SkDraw.h"
18 #include "SkDrawProcs.h" 19 #include "SkDrawProcs.h"
19 #include "SkGlyphCache.h" 20 #include "SkGlyphCache.h"
20 #include "SkGrPriv.h" 21 #include "SkGrPriv.h"
21 #include "SkDrawFilter.h" 22 #include "SkDrawFilter.h"
22 #include "SkPath.h" 23 #include "SkPath.h"
23 #include "SkTextBlobRunIterator.h" 24 #include "SkTextBlobRunIterator.h"
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 } 732 }
732 733
733 const SkTextBlob* GrStencilAndCoverTextContext::FallbackBlobBuilder::buildIfNeed ed(int *count) { 734 const SkTextBlob* GrStencilAndCoverTextContext::FallbackBlobBuilder::buildIfNeed ed(int *count) {
734 *count = fCount; 735 *count = fCount;
735 if (fCount) { 736 if (fCount) {
736 this->flush(); 737 this->flush();
737 return fBuilder->build(); 738 return fBuilder->build();
738 } 739 }
739 return nullptr; 740 return nullptr;
740 } 741 }
OLDNEW
« no previous file with comments | « src/gpu/text/GrBatchFontCache.h ('k') | src/gpu/vk/GrVkPipeline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698