X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/1756596c3a90f6cdbaf2bdd855e53a5645ac7c15..811e99b2cb8a17b651ffb4b5c63a2017a8252b4b:/Images.cpp diff --git a/Images.cpp b/Images.cpp index 311ceea..ffbe875 100644 --- a/Images.cpp +++ b/Images.cpp @@ -980,6 +980,10 @@ status_t preProcessImage(Bundle* bundle, const sp& assets, String8 printableName(file->getPrintableSource()); + if (bundle->getVerbose()) { + printf("Processing image: %s\n", printableName.string()); + } + png_structp read_ptr = NULL; png_infop read_info = NULL; FILE* fp; @@ -1094,6 +1098,10 @@ status_t preProcessImageToCache(Bundle* bundle, String8 source, String8 dest) status_t error = UNKNOWN_ERROR; + if (bundle->getVerbose()) { + printf("Processing image to cache: %s => %s\n", source.string(), dest.string()); + } + // Get a file handler to read from fp = fopen(source.string(),"rb"); if (fp == NULL) {