| Index: include/utils/SkMeshUtils.h | 
| =================================================================== | 
| --- include/utils/SkMeshUtils.h	(revision 11758) | 
| +++ include/utils/SkMeshUtils.h	(working copy) | 
| @@ -27,14 +27,14 @@ | 
| bool init(SkPoint tex[], uint16_t indices[], | 
| int texW, int texH, int rows, int cols); | 
|  | 
| -    size_t          indexCount() const { return fIndexCount; } | 
| +    int             indexCount() const { return fIndexCount; } | 
| const uint16_t* indices() const { return fIndices; } | 
|  | 
| size_t          texCount() const { return fTexCount; } | 
| const SkPoint*  tex() const { return fTex; } | 
|  | 
| private: | 
| -    size_t      fIndexCount, fTexCount; | 
| +    int         fIndexCount, fTexCount; | 
| SkPoint*    fTex; | 
| uint16_t*   fIndices; | 
| void*       fStorage; // may be null | 
|  |