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

Unified Diff: include/core/SkTArray.h

Issue 25605008: Repurpose GrGLCoordTransform as GrGLEffectArray (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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 | « gyp/gpu.gypi ('k') | include/gpu/GrTBackendEffectFactory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkTArray.h
diff --git a/include/core/SkTArray.h b/include/core/SkTArray.h
index b5ecdc98b15bc57c2b7cc6de53ad5ff556da8061..f7bdc5a15824dd0c85c24e7fe3e20e199e6de197 100644
--- a/include/core/SkTArray.h
+++ b/include/core/SkTArray.h
@@ -486,6 +486,10 @@ public:
: INHERITED(array, &fStorage) {
}
+ explicit SkSTArray(int reserveCount)
+ : INHERITED(reserveCount) {
+ }
+
SkSTArray(const T* array, int count)
: INHERITED(array, count, &fStorage) {
}
« no previous file with comments | « gyp/gpu.gypi ('k') | include/gpu/GrTBackendEffectFactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698