blob: f9217ae59bc051455edbc6431714c1b0ed362150 [file] [log] [blame]
/*
* Copyright 2022 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkBackingFit_DEFINED
#define SkBackingFit_DEFINED
/** Indicates whether a backing store needs to be an exact match or can be
larger than is strictly necessary.
*/
enum class SkBackingFit { kApprox, kExact };
#endif