| 1 | /* |
|---|---|
| 2 | * Copyright 2022 Google LLC |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkBackingFit_DEFINED |
| 9 | #define SkBackingFit_DEFINED |
| 10 | |
| 11 | /** Indicates whether a backing store needs to be an exact match or can be |
| 12 | larger than is strictly necessary. |
| 13 | */ |
| 14 | enum class SkBackingFit { kApprox, kExact }; |
| 15 | |
| 16 | #endif |
| 17 |
