From 6c259a8c457f8e5d9a019c47941dcf414e001efc Mon Sep 17 00:00:00 2001 From: Dan Morrill Date: Mon, 13 Dec 2010 16:25:54 -0800 Subject: [PATCH] GL texture filtering changed from AND to OR, so rename tag name to match. ( == AND, == OR, e.g. uses-feature vs. supports-screen). Change-Id: I0f20aed7f95169d9adfc7fe128191eb6e49d116f --- Command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command.cpp b/Command.cpp index 661ecb1..739763e 100644 --- a/Command.cpp +++ b/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()); -- 2.45.2