Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
GrResourceProviderPriv.h
Go to the documentation of this file.
1/*
2 * Copyright 2018 Google Inc.
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 GrResourceProviderPriv_DEFINED
9#define GrResourceProviderPriv_DEFINED
10
12
13/** Class that adds methods to GrResourceProvider that are only intended for use internal to Skia.
14 This class is purely a privileged window into GrResourceProvider. It should never have
15 additional data members or virtual methods. */
17public:
18 GrGpu* gpu() { return fResourceProvider->gpu(); }
19
20private:
21 explicit GrResourceProviderPriv(GrResourceProvider* provider) : fResourceProvider(provider) {}
22 GrResourceProviderPriv& operator=(const GrResourceProviderPriv&) = delete;
23
24 // No taking addresses of this type.
25 const GrResourceProviderPriv* operator&() const;
26 GrResourceProviderPriv* operator&();
27
28 GrResourceProvider* fResourceProvider;
29 friend class GrResourceProvider; // to construct/copy this type
30};
31
33
34inline const GrResourceProviderPriv GrResourceProvider::priv() const { // NOLINT(readability-const-return-type)
35 return GrResourceProviderPriv(const_cast<GrResourceProvider*>(this));
36}
37
38#endif
Definition GrGpu.h:62
friend class GrResourceProviderPriv
GrResourceProviderPriv priv()