summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Kevin Lubick <kjlubick@google.com> 2023-06-05 17:34:05 +0000
committer Kevin Lubick <kjlubick@google.com> 2023-06-05 17:34:51 +0000
commitb5ad05c962f8e4ec4c264d31cb9fae808e06e3ba (patch)
tree59984680487683cb2131a03f783fb92a60d95ec6
parent2bbed87deda4305b3c47e666234d8f91f33777d2 (diff)
Fix missing #include of GrBackendSurfaceMutableState.h
And some other includes that are missing and may cause issues in future refactors. See http://review.skia.org/704942 Change-Id: I3109cb4ca9b0868df13fb130f5cd8b8523a8cb93
-rw-r--r--libs/hwui/AutoBackendTextureRelease.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/hwui/AutoBackendTextureRelease.cpp b/libs/hwui/AutoBackendTextureRelease.cpp
index b7965857045c..d237cc261b53 100644
--- a/libs/hwui/AutoBackendTextureRelease.cpp
+++ b/libs/hwui/AutoBackendTextureRelease.cpp
@@ -18,6 +18,9 @@
#include <SkImage.h>
#include <include/gpu/ganesh/SkImageGanesh.h>
+#include <include/gpu/GrBackendSurfaceMutableState.h>
+#include <include/gpu/GrDirectContext.h>
+#include <include/gpu/GrBackendSurface.h>
#include "renderthread/RenderThread.h"
#include "utils/Color.h"
#include "utils/PaintUtils.h"