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

Side by Side Diff: src/gpu/GrGpu.cpp

Issue 1131553002: Isolate GrBufferAllocPools inside GrBatchTarget (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update to ToT Created 5 years, 7 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/GrGpu.h ('k') | src/gpu/GrInOrderCommandBuilder.h » ('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 2010 Google Inc. 3 * Copyright 2010 Google Inc.
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 #include "GrGpu.h" 10 #include "GrGpu.h"
11 11
12 #include "GrBufferAllocPool.h"
13 #include "GrContext.h" 12 #include "GrContext.h"
14 #include "GrDrawTargetCaps.h" 13 #include "GrDrawTargetCaps.h"
15 #include "GrGpuResourcePriv.h" 14 #include "GrGpuResourcePriv.h"
16 #include "GrIndexBuffer.h" 15 #include "GrIndexBuffer.h"
17 #include "GrResourceCache.h" 16 #include "GrResourceCache.h"
18 #include "GrRenderTargetPriv.h" 17 #include "GrRenderTargetPriv.h"
19 #include "GrStencilAttachment.h" 18 #include "GrStencilAttachment.h"
20 #include "GrVertexBuffer.h" 19 #include "GrVertexBuffer.h"
21 #include "GrVertices.h" 20 #include "GrVertices.h"
22 21
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 GrDrawTarget::PathIndexType indexType, 309 GrDrawTarget::PathIndexType indexType,
311 const float transformValues[], 310 const float transformValues[],
312 GrDrawTarget::PathTransformType transformType, 311 GrDrawTarget::PathTransformType transformType,
313 int count, 312 int count,
314 const GrStencilSettings& stencilSettings) { 313 const GrStencilSettings& stencilSettings) {
315 this->handleDirtyContext(); 314 this->handleDirtyContext();
316 pathRange->willDrawPaths(indices, indexType, count); 315 pathRange->willDrawPaths(indices, indexType, count);
317 this->onDrawPaths(args, pathRange, indices, indexType, transformValues, 316 this->onDrawPaths(args, pathRange, indices, indexType, transformValues,
318 transformType, count, stencilSettings); 317 transformType, count, stencilSettings);
319 } 318 }
OLDNEW
« no previous file with comments | « src/gpu/GrGpu.h ('k') | src/gpu/GrInOrderCommandBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698