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

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

Issue 2216643002: Rename GrDrawingManager::drawContext to makeDrawContext (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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/GrContext.cpp ('k') | src/gpu/GrDrawingManager.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 2015 Google Inc. 2 * Copyright 2015 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 GrDrawingManager_DEFINED 8 #ifndef GrDrawingManager_DEFINED
9 #define GrDrawingManager_DEFINED 9 #define GrDrawingManager_DEFINED
10 10
(...skipping 13 matching lines...) Expand all
24 // 24 //
25 // In the future this class will allocate a new GrDrawContext for 25 // In the future this class will allocate a new GrDrawContext for
26 // each GrRenderTarget/GrDrawTarget and manage the DAG. 26 // each GrRenderTarget/GrDrawTarget and manage the DAG.
27 class GrDrawingManager { 27 class GrDrawingManager {
28 public: 28 public:
29 ~GrDrawingManager(); 29 ~GrDrawingManager();
30 30
31 bool wasAbandoned() const { return fAbandoned; } 31 bool wasAbandoned() const { return fAbandoned; }
32 void freeGpuResources(); 32 void freeGpuResources();
33 33
34 sk_sp<GrDrawContext> drawContext(sk_sp<GrRenderTarget> rt, sk_sp<SkColorSpac e> colorSpace, 34 sk_sp<GrDrawContext> makeDrawContext(sk_sp<GrRenderTarget> rt,
35 const SkSurfaceProps*); 35 sk_sp<SkColorSpace>,
36 const SkSurfaceProps*);
36 37
37 // The caller automatically gets a ref on the returned drawTarget. It must 38 // The caller automatically gets a ref on the returned drawTarget. It must
38 // be balanced by an unref call. 39 // be balanced by an unref call.
39 GrDrawTarget* newDrawTarget(GrRenderTarget* rt); 40 GrDrawTarget* newDrawTarget(GrRenderTarget* rt);
40 41
41 GrContext* getContext() { return fContext; } 42 GrContext* getContext() { return fContext; }
42 43
43 GrPathRenderer* getPathRenderer(const GrPathRenderer::CanDrawPathArgs& args, 44 GrPathRenderer* getPathRenderer(const GrPathRenderer::CanDrawPathArgs& args,
44 bool allowSW, 45 bool allowSW,
45 GrPathRendererChain::DrawType drawType, 46 GrPathRendererChain::DrawType drawType,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 SkTDArray<GrDrawTarget*> fDrawTargets; 81 SkTDArray<GrDrawTarget*> fDrawTargets;
81 82
82 GrPathRendererChain* fPathRendererChain; 83 GrPathRendererChain* fPathRendererChain;
83 GrSoftwarePathRenderer* fSoftwarePathRenderer; 84 GrSoftwarePathRenderer* fSoftwarePathRenderer;
84 85
85 GrBatchFlushState fFlushState; 86 GrBatchFlushState fFlushState;
86 bool fFlushing; 87 bool fFlushing;
87 }; 88 };
88 89
89 #endif 90 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrContext.cpp ('k') | src/gpu/GrDrawingManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698