blob: ee17d8a45f076d76164496d43a038903c65e3a8a [file] [log] [blame]
robertphillips@google.com7d501ab2012-06-21 21:09:06 +00001/*
2 * Copyright 2012 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
robertphillips@google.com7d501ab2012-06-21 21:09:06 +00008#ifndef GrSurface_DEFINED
9#define GrSurface_DEFINED
10
11#include "GrTypes.h"
bsalomon6d3fe022014-07-25 08:35:45 -070012#include "GrGpuResource.h"
bsalomonafbf2d62014-09-30 12:18:44 -070013#include "SkImageInfo.h"
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +000014#include "SkRect.h"
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000015
robertphillipsb06e5a22014-09-30 06:58:20 -070016class GrRenderTarget;
bsalomonafbf2d62014-09-30 12:18:44 -070017class GrSurfacePriv;
18class GrTexture;
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000019
bsalomoncc97ece2015-07-08 07:53:10 -070020class SK_API GrSurface : public GrGpuResource {
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000021public:
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000022 /**
23 * Retrieves the width of the surface.
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000024 */
Brian Salomond34edf32017-05-19 15:45:48 -040025 int width() const { return fWidth; }
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000026
27 /**
28 * Retrieves the height of the surface.
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000029 */
Brian Salomond34edf32017-05-19 15:45:48 -040030 int height() const { return fHeight; }
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000031
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +000032 /**
33 * Helper that gets the width and height of the surface as a bounding rectangle.
34 */
robertphillips13a7eee2016-08-31 15:06:24 -070035 SkRect getBoundsRect() const { return SkRect::MakeIWH(this->width(), this->height()); }
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +000036
bsalomon@google.com2d0bade2012-10-26 19:01:17 +000037 /**
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000038 * Retrieves the pixel config specified when the surface was created.
39 * For render targets this can be kUnknown_GrPixelConfig
40 * if client asked us to render to a target that has a pixel
41 * config that isn't equivalent with one of our configs.
42 */
Brian Salomond34edf32017-05-19 15:45:48 -040043 GrPixelConfig config() const { return fConfig; }
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000044
45 /**
Robert Phillipsc589b0b2017-04-17 07:53:07 -040046 * @return the texture associated with the surface, may be null.
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000047 */
Robert Phillipsc589b0b2017-04-17 07:53:07 -040048 virtual GrTexture* asTexture() { return nullptr; }
49 virtual const GrTexture* asTexture() const { return nullptr; }
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000050
51 /**
Robert Phillipsc589b0b2017-04-17 07:53:07 -040052 * @return the render target underlying this surface, may be null.
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000053 */
Robert Phillipsc589b0b2017-04-17 07:53:07 -040054 virtual GrRenderTarget* asRenderTarget() { return nullptr; }
55 virtual const GrRenderTarget* asRenderTarget() const { return nullptr; }
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000056
bsalomonafbf2d62014-09-30 12:18:44 -070057 /** Access methods that are only to be used within Skia code. */
58 inline GrSurfacePriv surfacePriv();
59 inline const GrSurfacePriv surfacePriv() const;
robertphillipsb06e5a22014-09-30 06:58:20 -070060
Robert Phillipsb4460882016-11-17 14:43:51 -050061 static size_t WorstCaseSize(const GrSurfaceDesc& desc, bool useNextPow2 = false);
Brian Salomonbb5711a2017-05-17 13:49:59 -040062 static size_t ComputeSize(GrPixelConfig config, int width, int height, int colorSamplesPerPixel,
Greg Daniele252f082017-10-23 16:05:23 -040063 GrMipMapped, bool useNextPow2 = false);
Robert Phillipsd6214d42016-11-07 08:23:48 -050064
bsalomonafbf2d62014-09-30 12:18:44 -070065protected:
Robert Phillipsfe0253f2018-03-16 16:47:25 -040066 void setHasMixedSamples() {
67 SkASSERT(this->asRenderTarget());
68 fSurfaceFlags |= GrInternalSurfaceFlags::kMixedSampled;
69 }
70 bool hasMixedSamples() const { return fSurfaceFlags & GrInternalSurfaceFlags::kMixedSampled; }
71
72 void setSupportsWindowRects() {
73 SkASSERT(this->asRenderTarget());
74 fSurfaceFlags |= GrInternalSurfaceFlags::kWindowRectsSupport;
75 }
76 bool supportsWindowRects() const {
77 return fSurfaceFlags & GrInternalSurfaceFlags::kWindowRectsSupport;
78 }
79
bsalomonafbf2d62014-09-30 12:18:44 -070080 // Methods made available via GrSurfacePriv
bsalomon8d034a12014-09-22 12:21:08 -070081 bool hasPendingRead() const;
82 bool hasPendingWrite() const;
83 bool hasPendingIO() const;
84
bsalomonafbf2d62014-09-30 12:18:44 -070085 // Provides access to methods that should be public within Skia code.
86 friend class GrSurfacePriv;
87
kkinnunen2e6055b2016-04-22 01:48:29 -070088 GrSurface(GrGpu* gpu, const GrSurfaceDesc& desc)
Brian Salomond34edf32017-05-19 15:45:48 -040089 : INHERITED(gpu)
90 , fConfig(desc.fConfig)
91 , fWidth(desc.fWidth)
Robert Phillipsfe0253f2018-03-16 16:47:25 -040092 , fHeight(desc.fHeight)
93 , fSurfaceFlags(GrInternalSurfaceFlags::kNone) {
94 }
95
Greg Danielcef213c2017-04-21 11:52:27 -040096 ~GrSurface() override {}
robertphillips@google.com7d501ab2012-06-21 21:09:06 +000097
bsalomon@google.com2d0bade2012-10-26 19:01:17 +000098
reed35a52612015-06-18 14:05:07 -070099 void onRelease() override;
100 void onAbandon() override;
101
102private:
Robert Phillipsfe0253f2018-03-16 16:47:25 -0400103 GrPixelConfig fConfig;
104 int fWidth;
105 int fHeight;
106 GrInternalSurfaceFlags fSurfaceFlags;
Brian Salomond34edf32017-05-19 15:45:48 -0400107
bsalomon6d3fe022014-07-25 08:35:45 -0700108 typedef GrGpuResource INHERITED;
robertphillips@google.com7d501ab2012-06-21 21:09:06 +0000109};
110
bsalomonafbf2d62014-09-30 12:18:44 -0700111#endif