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
This commit is contained in:
Leon Scroggins III
2022-08-22 10:59:15 -04:00
parent c6fbc786f8
commit 5b8a0252c7

View File

@@ -16,7 +16,8 @@
#include "TestSceneBase.h"
#include <SkColorMatrixFilter.h>
#include <SkColorFilter.h>
#include <SkColorMatrix.h>
#include <SkGradientShader.h>
class SimpleColorMatrixAnimation;