summaryrefslogtreecommitdiff
path: root/libs/hwui/TextureCache.h
diff options
context:
space:
mode:
author John Reck <jreck@google.com> 2015-07-29 16:48:58 -0700
committer John Reck <jreck@google.com> 2015-07-30 09:51:52 -0700
commit272a685f17cc4828257e521a6f62b7b17870f75e (patch)
tree490cc3f92f5c50debc07421395ab54c3fd7f2fd6 /libs/hwui/TextureCache.h
parentc36df952292b69920d4764a8a37361073fcf4f2c (diff)
Replace most usages of utils/Vector.h
Change-Id: I540d1b3523244d6c71fc52d6fb30555271c25644
Diffstat (limited to 'libs/hwui/TextureCache.h')
-rw-r--r--libs/hwui/TextureCache.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/hwui/TextureCache.h b/libs/hwui/TextureCache.h
index 7a7ee5aeb554..ebd1885e75e1 100644
--- a/libs/hwui/TextureCache.h
+++ b/libs/hwui/TextureCache.h
@@ -21,10 +21,11 @@
#include <utils/LruCache.h>
#include <utils/Mutex.h>
-#include <utils/Vector.h>
#include "Debug.h"
+#include <vector>
+
namespace android {
namespace uirenderer {
@@ -165,7 +166,7 @@ private:
bool mDebugEnabled;
- Vector<uint32_t> mGarbage;
+ std::vector<uint32_t> mGarbage;
mutable Mutex mLock;
AssetAtlas* mAssetAtlas;