/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef StencilClip_DEFINED #define StencilClip_DEFINED #include "src/gpu/ganesh/GrAppliedClip.h" #include "src/gpu/ganesh/GrFixedClip.h" namespace skgpu::ganesh { /** * Implements GrHardClip with the currently-existing stencil buffer contents and GrFixedClip. */ class StencilClip final : public GrHardClip { … }; } // namespace skgpu::ganesh #endif // StencilClip_DEFINED