aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ColorSpaceTest.cpp
diff options
context:
space:
mode:
authorGravatar Ben Wagner <bungeman@google.com>2018-04-17 14:14:51 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-17 19:33:14 +0000
commiteed61283770799292615aede81934f4e794621b7 (patch)
tree9fb37aca9647dfda93e0c8ce0668daf55b8d44e1 /tests/ColorSpaceTest.cpp
parent21a0380655b03a2593ccf658b38ef0ec6336367c (diff)
IWYU for some more test files starting with 'C'.
Change-Id: I010527b342cbfa0b425ef0d00966219413d9e77d Reviewed-on: https://skia-review.googlesource.com/121886 Reviewed-by: Herb Derby <herb@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
Diffstat (limited to 'tests/ColorSpaceTest.cpp')
-rw-r--r--tests/ColorSpaceTest.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/ColorSpaceTest.cpp b/tests/ColorSpaceTest.cpp
index e53ffd1cdc..6ec59dd01e 100644
--- a/tests/ColorSpaceTest.cpp
+++ b/tests/ColorSpaceTest.cpp
@@ -8,12 +8,20 @@
#include "Resources.h"
#include "SkCodec.h"
#include "SkColorSpace.h"
-#include "SkColorSpace_XYZ.h"
#include "SkColorSpacePriv.h"
+#include "SkColorSpace_XYZ.h"
+#include "SkData.h"
+#include "SkImageInfo.h"
+#include "SkMatrix44.h"
+#include "SkRefCnt.h"
+#include "SkStream.h"
+#include "SkTypes.h"
#include "Test.h"
-
#include "png.h"
+#include <memory>
+#include <utility>
+
static bool almost_equal(float a, float b) {
return SkTAbs(a - b) < 0.001f;
}