bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 1 | /* |
reed@google.com | dd335ae | 2012-12-13 19:24:05 +0000 | [diff] [blame] | 2 | * Copyright 2011 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. |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 8 | #ifndef GrRenderTarget_DEFINED |
| 9 | #define GrRenderTarget_DEFINED |
| 10 | |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 11 | #include "GrSurface.h" |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 12 | #include "SkRect.h" |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 13 | |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 14 | class GrStencilBuffer; |
bsalomon | 6bc1b5f | 2015-02-23 09:06:38 -0800 | [diff] [blame] | 15 | class GrRenderTargetPriv; |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 16 | |
| 17 | /** |
| 18 | * GrRenderTarget represents a 2D buffer of pixels that can be rendered to. |
| 19 | * A context's render target is set by setRenderTarget(). Render targets are |
bsalomon | 37dd331 | 2014-11-03 08:47:23 -0800 | [diff] [blame] | 20 | * created by a createTexture with the kRenderTarget_SurfaceFlag flag. |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 21 | * Additionally, GrContext provides methods for creating GrRenderTargets |
| 22 | * that wrap externally created render targets. |
| 23 | */ |
bsalomon | 37dd331 | 2014-11-03 08:47:23 -0800 | [diff] [blame] | 24 | class GrRenderTarget : virtual public GrSurface { |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 25 | public: |
robertphillips@google.com | 4d73ac2 | 2012-06-13 18:54:08 +0000 | [diff] [blame] | 26 | SK_DECLARE_INST_COUNT(GrRenderTarget) |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 27 | |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 28 | // GrSurface overrides |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame^] | 29 | GrRenderTarget* asRenderTarget() override { return this; } |
| 30 | const GrRenderTarget* asRenderTarget() const override { return this; } |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 31 | |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 32 | // GrRenderTarget |
| 33 | /** |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 34 | * @return true if the surface is multisampled, false otherwise |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 35 | */ |
robertphillips@google.com | e98ade4 | 2012-06-13 12:53:07 +0000 | [diff] [blame] | 36 | bool isMultisampled() const { return 0 != fDesc.fSampleCnt; } |
bsalomon@google.com | 5bfc217 | 2011-07-29 20:29:05 +0000 | [diff] [blame] | 37 | |
| 38 | /** |
| 39 | * @return the number of samples-per-pixel or zero if non-MSAA. |
| 40 | */ |
robertphillips@google.com | e98ade4 | 2012-06-13 12:53:07 +0000 | [diff] [blame] | 41 | int numSamples() const { return fDesc.fSampleCnt; } |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 42 | |
| 43 | /** |
| 44 | * Call to indicate the multisample contents were modified such that the |
| 45 | * render target needs to be resolved before it can be used as texture. Gr |
| 46 | * tracks this for its own drawing and thus this only needs to be called |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 47 | * when the render target has been modified outside of Gr. This has no |
| 48 | * effect on wrapped backend render targets. |
| 49 | * |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 50 | * @param rect a rect bounding the area needing resolve. NULL indicates |
| 51 | * the whole RT needs resolving. |
| 52 | */ |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 53 | void flagAsNeedingResolve(const SkIRect* rect = NULL); |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 54 | |
| 55 | /** |
| 56 | * Call to override the region that needs to be resolved. |
| 57 | */ |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 58 | void overrideResolveRect(const SkIRect rect); |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 59 | |
| 60 | /** |
| 61 | * Call to indicate that GrRenderTarget was externally resolved. This may |
| 62 | * allow Gr to skip a redundant resolve step. |
| 63 | */ |
| 64 | void flagAsResolved() { fResolveRect.setLargestInverted(); } |
| 65 | |
| 66 | /** |
| 67 | * @return true if the GrRenderTarget requires MSAA resolving |
| 68 | */ |
| 69 | bool needsResolve() const { return !fResolveRect.isEmpty(); } |
| 70 | |
| 71 | /** |
| 72 | * Returns a rect bounding the region needing resolving. |
| 73 | */ |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 74 | const SkIRect& getResolveRect() const { return fResolveRect; } |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 75 | |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 76 | /** |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 77 | * Provide a performance hint that the render target's contents are allowed |
| 78 | * to become undefined. |
| 79 | */ |
| 80 | void discard(); |
| 81 | |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 82 | // a MSAA RT may require explicit resolving , it may auto-resolve (e.g. FBO |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 83 | // 0 in GL), or be unresolvable because the client didn't give us the |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 84 | // resolve destination. |
| 85 | enum ResolveType { |
| 86 | kCanResolve_ResolveType, |
| 87 | kAutoResolves_ResolveType, |
| 88 | kCantResolve_ResolveType, |
| 89 | }; |
| 90 | virtual ResolveType getResolveType() const = 0; |
| 91 | |
bsalomon | 6bc1b5f | 2015-02-23 09:06:38 -0800 | [diff] [blame] | 92 | // Provides access to functions that aren't part of the public API. |
| 93 | GrRenderTargetPriv renderTargetPriv(); |
| 94 | const GrRenderTargetPriv renderTargetPriv() const; |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 95 | |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 96 | protected: |
bsalomon | 5236cf4 | 2015-01-14 10:42:08 -0800 | [diff] [blame] | 97 | GrRenderTarget(GrGpu* gpu, LifeCycle lifeCycle, const GrSurfaceDesc& desc) |
| 98 | : INHERITED(gpu, lifeCycle, desc) |
bsalomon | 37dd331 | 2014-11-03 08:47:23 -0800 | [diff] [blame] | 99 | , fStencilBuffer(NULL) { |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 100 | fResolveRect.setLargestInverted(); |
| 101 | } |
| 102 | |
robertphillips@google.com | d6bbbf8 | 2012-09-05 15:46:34 +0000 | [diff] [blame] | 103 | // override of GrResource |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame^] | 104 | void onAbandon() override; |
| 105 | void onRelease() override; |
robertphillips@google.com | d6bbbf8 | 2012-09-05 15:46:34 +0000 | [diff] [blame] | 106 | |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 107 | private: |
bsalomon | 6bc1b5f | 2015-02-23 09:06:38 -0800 | [diff] [blame] | 108 | // Checked when this object is asked to attach a stencil buffer. |
| 109 | virtual bool canAttemptStencilAttachment() const = 0; |
| 110 | |
| 111 | friend class GrRenderTargetPriv; |
| 112 | |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 113 | GrStencilBuffer* fStencilBuffer; |
robertphillips@google.com | e98ade4 | 2012-06-13 12:53:07 +0000 | [diff] [blame] | 114 | |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 115 | SkIRect fResolveRect; |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 116 | |
robertphillips@google.com | 7d501ab | 2012-06-21 21:09:06 +0000 | [diff] [blame] | 117 | typedef GrSurface INHERITED; |
bsalomon@google.com | aa5b673 | 2011-07-29 15:13:20 +0000 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | #endif |