• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2014 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 GrSurfacePriv_DEFINED
9 #define GrSurfacePriv_DEFINED
10 
11 #include "GrSurface.h"
12 
13 /** Class that adds methods to GrSurface that are only intended for use internal to Skia.
14     This class is purely a privileged window into GrSurface. It should never have additional data
15     members or virtual methods.
16     Non-static methods that are not trivial inlines should be spring-boarded (e.g. declared and
17     implemented privately in GrSurface with a inline public method here). */
18 class GrSurfacePriv {
19 public:
20     /** Helpers used in read/write pixels implementations. The parameters are adjusted so that the
21         read/write respects the bounds of a surface. If the input *rowBytes is 0 it will be
22         the tight row bytes (based on width and bpp) on output. */
23     static bool AdjustReadPixelParams(int surfaceWidth,
24                                       int surfaceHeight,
25                                       size_t bpp,
26                                       int* left, int* top, int* width, int* height,
27                                       void** data,
28                                       size_t* rowBytes);
29     static bool AdjustWritePixelParams(int surfaceWidth,
30                                       int surfaceHeight,
31                                       size_t bpp,
32                                       int* left, int* top, int* width, int* height,
33                                       const void** data,
34                                       size_t* rowBytes);
35 
hasPendingRead()36     bool hasPendingRead() const { return fSurface->hasPendingRead(); }
hasPendingWrite()37     bool hasPendingWrite() const { return fSurface->hasPendingWrite(); }
hasPendingIO()38     bool hasPendingIO() const { return fSurface->hasPendingIO(); }
hasUniqueRef()39     bool hasUniqueRef() const { return fSurface->internalHasUniqueRef(); }
40 
flags()41     GrInternalSurfaceFlags flags() const { return fSurface->fSurfaceFlags; }
42 
43 private:
GrSurfacePriv(GrSurface * surface)44     explicit GrSurfacePriv(GrSurface* surface) : fSurface(surface) {}
45     GrSurfacePriv(const GrSurfacePriv&); // unimpl
46     GrSurfacePriv& operator=(const GrSurfacePriv&); // unimpl
47 
48     // No taking addresses of this type.
49     const GrSurfacePriv* operator&() const;
50     GrSurfacePriv* operator&();
51 
52     GrSurface* fSurface;
53 
54     friend class GrSurface; // to construct/copy this type.
55 };
56 
surfacePriv()57 inline GrSurfacePriv GrSurface::surfacePriv() { return GrSurfacePriv(this); }
58 
surfacePriv()59 inline const GrSurfacePriv GrSurface::surfacePriv() const {
60     return GrSurfacePriv(const_cast<GrSurface*>(this));
61 }
62 
63 #endif
64