| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkData.h" | 8 #include "SkData.h" |
| 9 #include "SkGraphics.h" | 9 #include "SkGraphics.h" |
| 10 #include "SkImageGenerator.h" | 10 #include "SkImageGenerator.h" |
| 11 #include "Test.h" | 11 #include "Test.h" |
| 12 | 12 |
| 13 static bool gMyFactoryWasCalled; | 13 static bool gMyFactoryWasCalled; |
| 14 | 14 |
| 15 static SkImageGenerator* my_factory(SkData*) { | 15 static SkImageGenerator* my_factory(SkData*) { |
| 16 gMyFactoryWasCalled = true; | 16 gMyFactoryWasCalled = true; |
| 17 return NULL; | 17 return NULL; |
| 18 } | 18 } |
| 19 | 19 |
| 20 static void test_imagegenerator_factory(skiatest::Reporter* reporter) { | 20 static void test_imagegenerator_factory(skiatest::Reporter* reporter) { |
| 21 // just need a non-empty data to test things | 21 // just need a non-empty data to test things |
| 22 SkData* data = SkData::NewWithCString("test_imagegenerator_factory"); | 22 SkAutoTUnref<SkData> data(SkData::NewWithCString("test_imagegenerator_factor
y")); |
| 23 | 23 |
| 24 gMyFactoryWasCalled = false; | 24 gMyFactoryWasCalled = false; |
| 25 | 25 |
| 26 SkImageGenerator* gen; | 26 SkImageGenerator* gen; |
| 27 REPORTER_ASSERT(reporter, !gMyFactoryWasCalled); | 27 REPORTER_ASSERT(reporter, !gMyFactoryWasCalled); |
| 28 | 28 |
| 29 gen = SkImageGenerator::NewFromEncoded(data); | 29 gen = SkImageGenerator::NewFromEncoded(data); |
| 30 REPORTER_ASSERT(reporter, NULL == gen); | 30 REPORTER_ASSERT(reporter, NULL == gen); |
| 31 REPORTER_ASSERT(reporter, !gMyFactoryWasCalled); | 31 REPORTER_ASSERT(reporter, !gMyFactoryWasCalled); |
| 32 | 32 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 63 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace); | 63 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace); |
| 64 | 64 |
| 65 int dummy; | 65 int dummy; |
| 66 planes[0] = planes[1] = planes[2] = &dummy; | 66 planes[0] = planes[1] = planes[2] = &dummy; |
| 67 rowBytes[0] = rowBytes[1] = rowBytes[2] = 250; | 67 rowBytes[0] = rowBytes[1] = rowBytes[2] = 250; |
| 68 | 68 |
| 69 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace); | 69 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace); |
| 70 | 70 |
| 71 test_imagegenerator_factory(reporter); | 71 test_imagegenerator_factory(reporter); |
| 72 } | 72 } |
| OLD | NEW |