Index: tests/ColorSpaceTest.cpp |
diff --git a/tests/ColorSpaceTest.cpp b/tests/ColorSpaceTest.cpp |
index 7e247d304d60860329966a4e58af8fef288df619..4a644603707c7e16c30eac49d59ffee50820b788 100644 |
--- a/tests/ColorSpaceTest.cpp |
+++ b/tests/ColorSpaceTest.cpp |
@@ -40,10 +40,15 @@ |
} |
} |
+static SkStreamAsset* resource(const char path[]) { |
+ SkString fullPath = GetResourcePath(path); |
+ return SkStream::NewFromFile(fullPath.c_str()); |
+} |
+ |
static void test_path(skiatest::Reporter* r, const char* path, |
const float red[], const float green[], const float blue[], |
const SkGammaNamed expectedGamma) { |
- SkAutoTDelete<SkStream> stream(GetResourceAsStream(path)); |
+ SkAutoTDelete<SkStream> stream(resource(path)); |
REPORTER_ASSERT(r, nullptr != stream); |
if (!stream) { |
return; |