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/GrCommandBuilder.h

Issue 1261033002: Rename GrInOrderDrawBuffer to GrBufferedDrawTarget (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: renames Created 5 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/GrClipMaskManager.cpp ('k') | src/gpu/GrContext.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 GrCommandBuilder_DEFINED 8 #ifndef GrCommandBuilder_DEFINED
9 #define GrCommandBuilder_DEFINED 9 #define GrCommandBuilder_DEFINED
10 10
11 #include "GrTargetCommands.h" 11 #include "GrTargetCommands.h"
12 12
13 class GrInOrderDrawBuffer; 13 class GrBufferedDrawTarget;
14 14
15 class GrCommandBuilder : ::SkNoncopyable { 15 class GrCommandBuilder : ::SkNoncopyable {
16 public: 16 public:
17 typedef GrTargetCommands::Cmd Cmd; 17 typedef GrTargetCommands::Cmd Cmd;
18 typedef GrTargetCommands::State State; 18 typedef GrTargetCommands::State State;
19 19
20 static GrCommandBuilder* Create(GrGpu* gpu, bool reorder); 20 static GrCommandBuilder* Create(GrGpu* gpu, bool reorder);
21 21
22 virtual ~GrCommandBuilder() {} 22 virtual ~GrCommandBuilder() {}
23 23
24 void reset() { fCommands.reset(); } 24 void reset() { fCommands.reset(); }
25 void flush(GrInOrderDrawBuffer* iodb) { fCommands.flush(iodb); } 25 void flush(GrBufferedDrawTarget* bufferedDrawTarget) { fCommands.flush(buffe redDrawTarget); }
26 26
27 virtual Cmd* recordClearStencilClip(const SkIRect& rect, 27 virtual Cmd* recordClearStencilClip(const SkIRect& rect,
28 bool insideClip, 28 bool insideClip,
29 GrRenderTarget* renderTarget); 29 GrRenderTarget* renderTarget);
30 virtual Cmd* recordDiscard(GrRenderTarget*); 30 virtual Cmd* recordDiscard(GrRenderTarget*);
31 virtual Cmd* recordDrawBatch(State*, GrBatch*) = 0; 31 virtual Cmd* recordDrawBatch(State*, GrBatch*) = 0;
32 virtual Cmd* recordStencilPath(const GrPipelineBuilder&, 32 virtual Cmd* recordStencilPath(const GrPipelineBuilder&,
33 const GrPathProcessor*, 33 const GrPathProcessor*,
34 const GrPath*, 34 const GrPath*,
35 const GrScissorState&, 35 const GrScissorState&,
36 const GrStencilSettings&) = 0; 36 const GrStencilSettings&) = 0;
37 virtual Cmd* recordDrawPath(State*, 37 virtual Cmd* recordDrawPath(State*,
38 const GrPathProcessor*, 38 const GrPathProcessor*,
39 const GrPath*, 39 const GrPath*,
40 const GrStencilSettings&) = 0; 40 const GrStencilSettings&) = 0;
41 virtual Cmd* recordDrawPaths(State*, 41 virtual Cmd* recordDrawPaths(State*,
42 GrInOrderDrawBuffer*, 42 GrBufferedDrawTarget*,
43 const GrPathProcessor*, 43 const GrPathProcessor*,
44 const GrPathRange*, 44 const GrPathRange*,
45 const void*, 45 const void*,
46 GrDrawTarget::PathIndexType, 46 GrDrawTarget::PathIndexType,
47 const float transformValues[], 47 const float transformValues[],
48 GrDrawTarget::PathTransformType , 48 GrDrawTarget::PathTransformType ,
49 int, 49 int,
50 const GrStencilSettings&, 50 const GrStencilSettings&,
51 const GrDrawTarget::PipelineInfo&) = 0; 51 const GrDrawTarget::PipelineInfo&) = 0;
52 virtual Cmd* recordClear(const SkIRect* rect, 52 virtual Cmd* recordClear(const SkIRect* rect,
(...skipping 20 matching lines...) Expand all
73 73
74 GrTargetCommands::CmdBuffer* cmdBuffer() { return fCommands.cmdBuffer(); } 74 GrTargetCommands::CmdBuffer* cmdBuffer() { return fCommands.cmdBuffer(); }
75 GrBatchTarget* batchTarget() { return fCommands.batchTarget(); } 75 GrBatchTarget* batchTarget() { return fCommands.batchTarget(); }
76 76
77 private: 77 private:
78 GrTargetCommands fCommands; 78 GrTargetCommands fCommands;
79 79
80 }; 80 };
81 81
82 #endif 82 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrClipMaskManager.cpp ('k') | src/gpu/GrContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698