Skip to content

Commit 096b67f

Browse files
author
Dan Morrill
committed
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
1 parent e3f6336 commit 096b67f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/aapt/Command.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -904,10 +904,10 @@ int doDump(Bundle* bundle)
904904
error.string());
905905
goto bail;
906906
}
907-
} else if (tag == "uses-gl-texture") {
907+
} else if (tag == "supports-gl-texture") {
908908
String8 name = getAttribute(tree, NAME_ATTR, &error);
909909
if (name != "" && error == "") {
910-
printf("uses-gl-texture:'%s'\n", name.string());
910+
printf("supports-gl-texture:'%s'\n", name.string());
911911
} else {
912912
fprintf(stderr, "ERROR getting 'android:name' attribute: %s\n",
913913
error.string());

0 commit comments

Comments
 (0)