blob: 145e775b0bdfa4a15452fd3e8ccbf31eeb343c2e [file] [log] [blame]
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkPathEffectPriv_DEFINED
#define SkPathEffectPriv_DEFINED
#include "include/core/SkPathEffect.h"
// Provides access to internal SkPathEffect APIs
class SkPathEffectPriv {
public:
static bool ComputeFastBounds(const SkPathEffect* pe, SkRect* bounds) {
return pe->computeFastBounds(bounds);
}
private:
SkPathEffectPriv();
};
#endif // SkPathEffectPriv_DEFINED