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

Unified Diff: src/gpu/GrBatchTarget.h

Issue 1139753002: Refactor GrBufferAllocPools to use resource cache (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix merge issue Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/gpu/GrTextureProvider.h ('k') | src/gpu/GrBatchTarget.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrBatchTarget.h
diff --git a/src/gpu/GrBatchTarget.h b/src/gpu/GrBatchTarget.h
index 80a8b9bad320e9da4b30091e779212bf5a54c883..19cfb09cb7278633457991910c1c3a8633ba0282 100644
--- a/src/gpu/GrBatchTarget.h
+++ b/src/gpu/GrBatchTarget.h
@@ -115,26 +115,26 @@ public:
const GrIndexBuffer** buffer, int* startIndex);
// A helper for draws which overallocate and then return data to the pool
- void putBackIndices(size_t indices) { fIndexPool->putBack(indices * sizeof(uint16_t)); }
+ void putBackIndices(size_t indices) { fIndexPool.putBack(indices * sizeof(uint16_t)); }
void putBackVertices(size_t vertices, size_t vertexStride) {
- fVertexPool->putBack(vertices * vertexStride);
+ fVertexPool.putBack(vertices * vertexStride);
}
void reset() {
- fVertexPool->reset();
- fIndexPool->reset();
+ fVertexPool.reset();
+ fIndexPool.reset();
}
private:
void unmapVertexAndIndexBuffers() {
- fVertexPool->unmap();
- fIndexPool->unmap();
+ fVertexPool.unmap();
+ fIndexPool.unmap();
}
GrGpu* fGpu;
- SkAutoTDelete<GrVertexBufferAllocPool> fVertexPool;
- SkAutoTDelete<GrIndexBufferAllocPool> fIndexPool;
+ GrVertexBufferAllocPool fVertexPool;
+ GrIndexBufferAllocPool fIndexPool;
typedef void* TBufferAlign; // This wouldn't be enough align if a command used long double.
« no previous file with comments | « include/gpu/GrTextureProvider.h ('k') | src/gpu/GrBatchTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698