diff options
author | Dan Morrill <morrildl@google.com> | 2010-12-13 16:25:54 -0800 |
---|---|---|
committer | Dan Morrill <morrildl@google.com> | 2010-12-13 16:25:54 -0800 |
commit | 096b67f65510a5076f1f845f9e19dda2b30ea6bb (patch) | |
tree | 55433fd8a7525c5360b3b4e0cfcd8b1ef4a442f2 /tools/aapt | |
parent | e3f6336bcffc250da90ec864bccfa73ad1d016b9 (diff) | |
download | frameworks_base-096b67f65510a5076f1f845f9e19dda2b30ea6bb.zip frameworks_base-096b67f65510a5076f1f845f9e19dda2b30ea6bb.tar.gz frameworks_base-096b67f65510a5076f1f845f9e19dda2b30ea6bb.tar.bz2 |
GL texture filtering changed from AND to OR, so rename tag name to match.
(<uses-foo> == AND, <supports-foo> == OR, e.g. uses-feature vs.
supports-screen).
Change-Id: I0f20aed7f95169d9adfc7fe128191eb6e49d116f
Diffstat (limited to 'tools/aapt')
-rw-r--r-- | tools/aapt/Command.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt/Command.cpp b/tools/aapt/Command.cpp index 661ecb1..739763e 100644 --- a/tools/aapt/Command.cpp +++ b/tools/aapt/Command.cpp @@ -904,10 +904,10 @@ int doDump(Bundle* bundle) error.string()); goto bail; } - } else if (tag == "uses-gl-texture") { + } else if (tag == "supports-gl-texture") { String8 name = getAttribute(tree, NAME_ATTR, &error); if (name != "" && error == "") { - printf("uses-gl-texture:'%s'\n", name.string()); + printf("supports-gl-texture:'%s'\n", name.string()); } else { fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n", error.string()); |