diff options
author | Kenny Root <kroot@google.com> | 2010-11-22 22:28:37 -0800 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2010-11-22 22:28:44 -0800 |
commit | 7c71023b7f5aafac09bd2f0425fccb5fe2d22b27 (patch) | |
tree | a3c86b0da5f22866d64c8d5ff61b6e0689a8453c /tools/aapt/ResourceTable.h | |
parent | 83d97c8c7ddff9374f876bef48758414a7775cb1 (diff) |
Add knowledge of mipmap to aapt
New mipmap drawable type that does not get filtered according to
configuration. Useful for things that get built as part of the system.
Change-Id: I556033d065e504079271dce79c23c90d3c387ce4
Diffstat (limited to 'tools/aapt/ResourceTable.h')
-rw-r--r-- | tools/aapt/ResourceTable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/aapt/ResourceTable.h b/tools/aapt/ResourceTable.h index 186c7ca8fdd8..bbb81408c830 100644 --- a/tools/aapt/ResourceTable.h +++ b/tools/aapt/ResourceTable.h @@ -549,9 +549,9 @@ class ResourceFilter public: ResourceFilter() : mData(), mContainsPseudo(false) {} status_t parse(const char* arg); - bool match(int axis, uint32_t value); - bool match(const ResTable_config& config); - inline bool containsPseudo() { return mContainsPseudo; } + bool match(int axis, uint32_t value) const; + bool match(const ResTable_config& config) const; + inline bool containsPseudo() const { return mContainsPseudo; } private: KeyedVector<int,SortedVector<uint32_t> > mData; |