/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef skgpu_graphite_ContextOptionsPriv_DEFINED #define skgpu_graphite_ContextOptionsPriv_DEFINED namespace skgpu::graphite { /** * Used to include or exclude a specific path rendering technique for testing purposes. */ enum class PathRendererStrategy { … }; /** * Private options that are only meant for testing within Skia's tools. */ struct ContextOptionsPriv { … }; } // namespace skgpu::graphite #endif // skgpu_graphite_ContextOptionsPriv_DEFINED