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