Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf7c5eef authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix includes of SkRRect and other Skia headers"

parents a6d046b0 856848e4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -29,10 +29,14 @@
#include "SkDrawShadowInfo.h"
#include "SkImage.h"
#include "SkImageFilter.h"
#include "SkImageInfo.h"
#include "SkLatticeIter.h"
#include "SkMath.h"
#include "SkPaint.h"
#include "SkPicture.h"
#include "SkRRect.h"
#include "SkRSXform.h"
#include "SkRect.h"
#include "SkRegion.h"
#include "SkTextBlob.h"
#include "SkVertices.h"
+2 −0
Original line number Diff line number Diff line
@@ -34,6 +34,8 @@
#include <SkRuntimeEffect.h>
#include <vector>

class SkRRect;

namespace android {
namespace uirenderer {

+6 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@

#include <SkAndroidFrameworkUtils.h>
#include <SkAnimatedImage.h>
#include <SkBitmap.h>
#include <SkCanvasPriv.h>
#include <SkCanvasStateUtils.h>
#include <SkColorFilter.h>
@@ -36,8 +37,13 @@
#include <SkGraphics.h>
#include <SkImage.h>
#include <SkImagePriv.h>
#include <SkMatrix.h>
#include <SkPaint.h>
#include <SkPicture.h>
#include <SkRSXform.h>
#include <SkRRect.h>
#include <SkRect.h>
#include <SkRefCnt.h>
#include <SkShader.h>
#include <SkTemplates.h>
#include <SkTextBlob.h>
+2 −0
Original line number Diff line number Diff line
@@ -33,6 +33,8 @@
#include <cassert>
#include <optional>

class SkRRect;

namespace android {

// Holds an SkCanvas reference plus additional native data.
+9 −3
Original line number Diff line number Diff line
@@ -17,13 +17,19 @@
#pragma once

#include <SkAndroidFrameworkUtils.h>
#include <SkBlendMode.h>
#include <SkCanvas.h>
#include <SkPath.h>
#include <SkRegion.h>
#include <SkVertices.h>
#include <SkClipOp.h>
#include <SkImage.h>
#include <SkPaint.h>
#include <SkPath.h>
#include <SkPicture.h>
#include <SkRRect.h>
#include <SkRect.h>
#include <SkRegion.h>
#include <SkRuntimeEffect.h>
#include <SkSamplingOptions.h>
#include <SkVertices.h>

#include <log/log.h>

Loading