From 5b8a0252c7ef761f3b5cd1172429bed4206255d6 Mon Sep 17 00:00:00 2001 From: Leon Scroggins III Date: Mon, 22 Aug 2022 10:59:15 -0400 Subject: [PATCH] IWYU in SimpleColorMatrixAnimation https://skia-review.googlesource.com/c/skia/+/571121 removes the include from SkColorMatrixFilter to SkColorMatrix. This file uses the latter directly, so include it. This will fix a build breakage which is currently preventing a Skia roll. In addition, include SkColorFilter.h directly, now that we're no longer using SkColorMatrixFilter (since I01e29bd36ed3788c4f996092c81310c17f5039cd). Bug: NA Test: make Change-Id: I8d1838538ef80f8cd07af82ce8dafd9118b378e6 --- libs/hwui/tests/common/scenes/SimpleColorMatrixAnimation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/hwui/tests/common/scenes/SimpleColorMatrixAnimation.cpp b/libs/hwui/tests/common/scenes/SimpleColorMatrixAnimation.cpp index a0bc5aa245d52..2aeb42cc0e206 100644 --- a/libs/hwui/tests/common/scenes/SimpleColorMatrixAnimation.cpp +++ b/libs/hwui/tests/common/scenes/SimpleColorMatrixAnimation.cpp @@ -16,7 +16,8 @@ #include "TestSceneBase.h" -#include +#include +#include #include class SimpleColorMatrixAnimation;