diff options
| author | 2015-07-30 17:38:35 +0000 | |
|---|---|---|
| committer | 2015-07-30 17:38:35 +0000 | |
| commit | cef25e5319e4f76682dd63a3c01bfacb19aeeb51 (patch) | |
| tree | 9504d6b0708f8e3c06158ef597efded8dc93bfaf /libs/hwui/Patch.h | |
| parent | ba36e0c2d1f6377671b493a5ae121140c002ce0f (diff) | |
| parent | 272a685f17cc4828257e521a6f62b7b17870f75e (diff) | |
Merge "Replace most usages of utils/Vector.h"
Diffstat (limited to 'libs/hwui/Patch.h')
| -rw-r--r-- | libs/hwui/Patch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/hwui/Patch.h b/libs/hwui/Patch.h index b63bd24456d3..f04416ccabf9 100644 --- a/libs/hwui/Patch.h +++ b/libs/hwui/Patch.h @@ -21,13 +21,13 @@ #include <GLES2/gl2.h> -#include <utils/Vector.h> - #include <androidfw/ResourceTypes.h> #include "Rect.h" #include "UvMapper.h" +#include <vector> + namespace android { namespace uirenderer { @@ -52,7 +52,7 @@ public: uint32_t verticesCount = 0; uint32_t indexCount = 0; bool hasEmptyQuads = false; - Vector<Rect> quads; + std::vector<Rect> quads; GLintptr positionOffset = 0; GLintptr textureOffset = 0; |