From 1175dc00a8888c90a920aacbfdaeeceb385e9823 Mon Sep 17 00:00:00 2001 From: Kevin Lubick Date: Mon, 28 Feb 2022 12:41:27 -0500 Subject: Fix transitive dependencies on SkImageEncoder In https://skia-review.googlesource.com/c/skia/+/512416, we would like to decouple SkImage and SkImageEncoder. This CL was created by searching for use of these objects: - SkEncodedImageFormat - SkStream - SkData - SkBitmap - SkPixmap and making sure those files followed the Include What You Use (IWYU) guidelines. Signed-off-by: Kevin Lubick Change-Id: I8edbcd1c9a526b8084d7e2c023895d1ad2f8c9b1 --- libs/hwui/Readback.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'libs/hwui/Readback.cpp') diff --git a/libs/hwui/Readback.cpp b/libs/hwui/Readback.cpp index 4cce87ad1a2f..79953aa6adc9 100644 --- a/libs/hwui/Readback.cpp +++ b/libs/hwui/Readback.cpp @@ -26,6 +26,18 @@ #include "pipeline/skia/LayerDrawable.h" #include "renderthread/EglManager.h" #include "renderthread/VulkanManager.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "utils/Color.h" #include "utils/MathUtils.h" #include "utils/NdkUtils.h" -- cgit v1.2.3-59-g8ed1b