| commit | 92669014aa7ab821cdc09cc9ad610316eb16b490 | [log] [tgz] |
|---|---|---|
| author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Sep 27 19:10:05 2011 +0000 |
| committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Sep 27 19:10:05 2011 +0000 |
| tree | a33fcb3135749e84812d9e4b5e0549e0fdca53f5 | |
| parent | c12e1b138e736f70d698f14a3ffc74af6f3d8621 [diff] [blame] |
Add SkSTArray, hide stack storage cons in SkTArray, unify SkTArray init logic Review URL: http://codereview.appspot.com/5127044/ git-svn-id: http://skia.googlecode.com/svn/trunk@2342 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gpu/include/GrClip.h b/gpu/include/GrClip.h index 9e235bf..d86eb97 100644 --- a/gpu/include/GrClip.h +++ b/gpu/include/GrClip.h
@@ -135,8 +135,7 @@ enum { kPreAllocElements = 4, }; - SkAlignedSTStorage<kPreAllocElements, Element> fListStorage; - SkTArray<Element> fList; + SkSTArray<kPreAllocElements, Element> fList; }; #endif