Flatten resources directory
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 9 May 2014 16:24:06 +0000 (16:24 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 9 May 2014 16:24:06 +0000 (16:24 +0000)
On android trybots, the files in a subdirectory weren't being
loaded onto the device.  Consequently, the ImageDecoderOptions
test was not testing anything. I had to relax that unit test
to reflect the existing behavior of our libjpeg decoder on
Android.

R=djsollen@google.com

Author: halcanary@google.com

Review URL: https://codereview.chromium.org/264583007

git-svn-id: http://skia.googlecode.com/svn/trunk@14678 2bbb7eff-a529-9590-31e7-b0007b416f81

resources/encoding/randPixels.jpg [deleted file]
resources/encoding/randPixels.png [deleted file]
resources/encoding/randPixels.webp [deleted file]
resources/randPixels.bmp [moved from resources/encoding/randPixels.bmp with 100% similarity]
resources/randPixels.gif [moved from resources/encoding/randPixels.gif with 100% similarity]
resources/randPixels.jpg [new file with mode: 0644]
resources/randPixels.png [new file with mode: 0644]
resources/randPixels.webp [new file with mode: 0644]
tests/ImageDecodingTest.cpp

diff --git a/resources/encoding/randPixels.jpg b/resources/encoding/randPixels.jpg
deleted file mode 100644 (file)
index ca57fbd..0000000
Binary files a/resources/encoding/randPixels.jpg and /dev/null differ
diff --git a/resources/encoding/randPixels.png b/resources/encoding/randPixels.png
deleted file mode 100644 (file)
index 49ef846..0000000
Binary files a/resources/encoding/randPixels.png and /dev/null differ
diff --git a/resources/encoding/randPixels.webp b/resources/encoding/randPixels.webp
deleted file mode 100644 (file)
index 135441e..0000000
Binary files a/resources/encoding/randPixels.webp and /dev/null differ
diff --git a/resources/randPixels.jpg b/resources/randPixels.jpg
new file mode 100644 (file)
index 0000000..8f26ea0
Binary files /dev/null and b/resources/randPixels.jpg differ
diff --git a/resources/randPixels.png b/resources/randPixels.png
new file mode 100644 (file)
index 0000000..8cd8e65
Binary files /dev/null and b/resources/randPixels.png differ
diff --git a/resources/randPixels.webp b/resources/randPixels.webp
new file mode 100644 (file)
index 0000000..9c4acea
Binary files /dev/null and b/resources/randPixels.webp differ
index e9348fe..86b96ae 100644 (file)
@@ -512,8 +512,8 @@ static SkPixelRef* install_pixel_ref(SkBitmap* bitmap,
  */
 DEF_TEST(ImprovedBitmapFactory, reporter) {
     SkString resourcePath = skiatest::Test::GetResourcePath();
-    SkString directory = SkOSPath::SkPathJoin(resourcePath.c_str(), "encoding");
-    SkString path = SkOSPath::SkPathJoin(directory.c_str(), "randPixels.png");
+    SkString path = SkOSPath::SkPathJoin(
+            resourcePath.c_str(), "randPixels.png");
     SkAutoTUnref<SkStreamRewindable> stream(
         SkStream::NewFromFile(path.c_str()));
     if (sk_exists(path.c_str())) {
@@ -531,9 +531,10 @@ DEF_TEST(ImprovedBitmapFactory, reporter) {
 
 #if defined(SK_BUILD_FOR_ANDROID) || defined(SK_BUILD_FOR_UNIX)
 static inline bool check_rounding(int value, int dividend, int divisor) {
-    // returns true if (dividend/divisor) rounds up OR down to value
+    // returns true if the value is greater than floor(dividend/divisor)
+    // and less than SkNextPow2(ceil(dividend - divisor))
     return (((divisor * value) > (dividend - divisor))
-            && ((divisor * value) < (dividend + divisor)));
+            && value <= SkNextPow2(((dividend - 1) / divisor) + 1));
 }
 #endif  // SK_BUILD_FOR_ANDROID || SK_BUILD_FOR_UNIX
 
@@ -621,6 +622,11 @@ static void test_options(skiatest::Reporter* reporter,
                                              opts.fSampleSize));
     REPORTER_ASSERT(reporter, check_rounding(bm.width(), kExpectedWidth,
                                              opts.fSampleSize));
+    // The ImageDecoder API doesn't guarantee that SampleSize does
+    // anything at all, but the decoders that this test excercises all
+    // produce an output size in the following range:
+    //    (((sample_size * out_size) > (in_size - sample_size))
+    //     && out_size <= SkNextPow2(((in_size - 1) / sample_size) + 1));
     #endif  // SK_BUILD_FOR_ANDROID || SK_BUILD_FOR_UNIX
     SkAutoLockPixels alp(bm);
     if (bm.getPixels() == NULL) {
@@ -682,8 +688,7 @@ DEF_TEST(ImageDecoderOptions, reporter) {
     };
 
     SkString resourceDir = skiatest::Test::GetResourcePath();
-    SkString directory = SkOSPath::SkPathJoin(resourceDir.c_str(), "encoding");
-    if (!sk_exists(directory.c_str())) {
+    if (!sk_exists(resourceDir.c_str())) {
         return;
     }
 
@@ -700,7 +705,7 @@ DEF_TEST(ImageDecoderOptions, reporter) {
     const bool useDataList[] = {true, false};
 
     for (size_t fidx = 0; fidx < SK_ARRAY_COUNT(files); ++fidx) {
-        SkString path = SkOSPath::SkPathJoin(directory.c_str(), files[fidx]);
+        SkString path = SkOSPath::SkPathJoin(resourceDir.c_str(), files[fidx]);
         if (!sk_exists(path.c_str())) {
             continue;
         }