/* * Copyright 2018 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef GrResourceProviderPriv_DEFINED #define GrResourceProviderPriv_DEFINED #include "src/gpu/ganesh/GrResourceProvider.h" /** Class that adds methods to GrResourceProvider that are only intended for use internal to Skia. This class is purely a privileged window into GrResourceProvider. It should never have additional data members or virtual methods. */ class GrResourceProviderPriv { … }; inline GrResourceProviderPriv GrResourceProvider::priv() { … } inline const GrResourceProviderPriv GrResourceProvider::priv() const { … } #endif