egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 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 GrGpuCommandBuffer_DEFINED |
| 9 | #define GrGpuCommandBuffer_DEFINED |
| 10 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "include/core/SkDrawable.h" |
| 12 | #include "src/gpu/GrPipeline.h" |
| 13 | #include "src/gpu/ops/GrDrawOp.h" |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 14 | |
Brian Salomon | 742e31d | 2016-12-07 17:06:19 -0500 | [diff] [blame] | 15 | class GrOpFlushState; |
csmartdalton | 29df760 | 2016-08-31 11:55:52 -0700 | [diff] [blame] | 16 | class GrFixedClip; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 17 | class GrGpu; |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 18 | class GrMesh; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 19 | class GrPipeline; |
| 20 | class GrPrimitiveProcessor; |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 21 | class GrRenderTarget; |
Greg Daniel | 64cc9aa | 2018-10-19 13:54:56 -0400 | [diff] [blame] | 22 | class GrSemaphore; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 23 | struct SkIRect; |
Greg Daniel | 36a77ee | 2016-10-18 10:33:25 -0400 | [diff] [blame] | 24 | struct SkRect; |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 25 | |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 26 | class GrGpuRTCommandBuffer; |
| 27 | |
| 28 | class GrGpuCommandBuffer { |
| 29 | public: |
| 30 | virtual ~GrGpuCommandBuffer() {} |
| 31 | |
| 32 | // Copy src into current surface owned by either a GrGpuTextureCommandBuffer or |
Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 33 | // GrGpuRenderTargetCommandBuffer. The srcRect and dstPoint must be in dst coords and have |
| 34 | // already been adjusted for any origin flips. |
| 35 | virtual void copy(GrSurface* src, const SkIRect& srcRect, const SkIPoint& dstPoint) = 0; |
Brian Salomon | ab32f65 | 2019-05-10 14:24:50 -0400 | [diff] [blame] | 36 | // Initiates a transfer from the surface owned by the command buffer to the GrGpuBuffer. |
| 37 | virtual void transferFrom(const SkIRect& srcRect, GrColorType bufferColorType, |
| 38 | GrGpuBuffer* transferBuffer, size_t offset) = 0; |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 39 | |
| 40 | virtual void insertEventMarker(const char*) = 0; |
| 41 | |
| 42 | virtual GrGpuRTCommandBuffer* asRTCommandBuffer() { return nullptr; } |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | class GrGpuTextureCommandBuffer : public GrGpuCommandBuffer{ |
| 46 | public: |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 47 | void set(GrTexture* texture, GrSurfaceOrigin origin) { |
| 48 | SkASSERT(!fTexture); |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 49 | |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 50 | fTexture = texture; |
| 51 | } |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 52 | |
| 53 | protected: |
Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 54 | GrGpuTextureCommandBuffer() : fTexture(nullptr) {} |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 55 | |
Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 56 | GrGpuTextureCommandBuffer(GrTexture* texture, GrSurfaceOrigin origin) : fTexture(texture) {} |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 57 | |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 58 | GrTexture* fTexture; |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 59 | |
| 60 | private: |
| 61 | typedef GrGpuCommandBuffer INHERITED; |
| 62 | }; |
| 63 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 64 | /** |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 65 | * The GrGpuRenderTargetCommandBuffer is a series of commands (draws, clears, and discards), which |
| 66 | * all target the same render target. It is possible that these commands execute immediately (GL), |
| 67 | * or get buffered up for later execution (Vulkan). GrOps will execute their draw commands into a |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 68 | * GrGpuCommandBuffer. |
| 69 | */ |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 70 | class GrGpuRTCommandBuffer : public GrGpuCommandBuffer { |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 71 | public: |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 72 | struct LoadAndStoreInfo { |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 73 | GrLoadOp fLoadOp; |
| 74 | GrStoreOp fStoreOp; |
| 75 | SkPMColor4f fClearColor; |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 76 | }; |
| 77 | |
Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 78 | // Load-time clears of the stencil buffer are always to 0 so we don't store |
| 79 | // an 'fStencilClearValue' |
| 80 | struct StencilLoadAndStoreInfo { |
Robert Phillips | 6b47c7d | 2017-08-29 07:24:09 -0400 | [diff] [blame] | 81 | GrLoadOp fLoadOp; |
| 82 | GrStoreOp fStoreOp; |
Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 83 | }; |
| 84 | |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 85 | GrGpuRTCommandBuffer* asRTCommandBuffer() { return this; } |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 86 | |
Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 87 | virtual void begin() = 0; |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 88 | // Signals the end of recording to the command buffer and that it can now be submitted. |
| 89 | virtual void end() = 0; |
| 90 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 91 | // We pass in an array of meshCount GrMesh to the draw. The backend should loop over each |
| 92 | // GrMesh object and emit a draw for it. Each draw will use the same GrPipeline and |
| 93 | // GrPrimitiveProcessor. This may fail if the draw would exceed any resource limits (e.g. |
| 94 | // number of vertex attributes is too large). |
Brian Salomon | ff168d9 | 2018-06-23 15:17:27 -0400 | [diff] [blame] | 95 | bool draw(const GrPrimitiveProcessor&, |
| 96 | const GrPipeline&, |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 97 | const GrPipeline::FixedDynamicState*, |
| 98 | const GrPipeline::DynamicStateArrays*, |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 99 | const GrMesh[], |
Greg Daniel | 36a77ee | 2016-10-18 10:33:25 -0400 | [diff] [blame] | 100 | int meshCount, |
| 101 | const SkRect& bounds); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 102 | |
Greg Daniel | 77b53f6 | 2016-10-18 11:48:51 -0400 | [diff] [blame] | 103 | // Performs an upload of vertex data in the middle of a set of a set of draws |
Brian Salomon | 943ed79 | 2017-10-30 09:37:55 -0400 | [diff] [blame] | 104 | virtual void inlineUpload(GrOpFlushState*, GrDeferredTextureUploadFn&) = 0; |
Greg Daniel | 77b53f6 | 2016-10-18 11:48:51 -0400 | [diff] [blame] | 105 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 106 | /** |
Jim Van Verth | 6a40abc | 2017-11-02 16:56:09 +0000 | [diff] [blame] | 107 | * Clear the owned render target. Ignores the draw state and clip. |
Greg Daniel | 77b53f6 | 2016-10-18 11:48:51 -0400 | [diff] [blame] | 108 | */ |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 109 | void clear(const GrFixedClip&, const SkPMColor4f&); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 110 | |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 111 | void clearStencilClip(const GrFixedClip&, bool insideStencilMask); |
Greg Daniel | 36a77ee | 2016-10-18 10:33:25 -0400 | [diff] [blame] | 112 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 113 | /** |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 114 | * Discards the contents render target. |
Greg Daniel | 77b53f6 | 2016-10-18 11:48:51 -0400 | [diff] [blame] | 115 | */ |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 116 | // TODO: This should be removed in the future to favor using the load and store ops for discard |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 117 | virtual void discard() = 0; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 118 | |
Greg Daniel | 64cc9aa | 2018-10-19 13:54:56 -0400 | [diff] [blame] | 119 | /** |
| 120 | * Executes the SkDrawable object for the underlying backend. |
| 121 | */ |
| 122 | virtual void executeDrawable(std::unique_ptr<SkDrawable::GpuDrawHandler>) {} |
| 123 | |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 124 | protected: |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 125 | GrGpuRTCommandBuffer() : fOrigin(kTopLeft_GrSurfaceOrigin), fRenderTarget(nullptr) {} |
| 126 | |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 127 | GrGpuRTCommandBuffer(GrRenderTarget* rt, GrSurfaceOrigin origin) |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 128 | : fOrigin(origin) |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 129 | , fRenderTarget(rt) { |
| 130 | } |
| 131 | |
Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 132 | void set(GrRenderTarget* rt, GrSurfaceOrigin origin) { |
| 133 | SkASSERT(!fRenderTarget); |
| 134 | |
| 135 | fRenderTarget = rt; |
| 136 | fOrigin = origin; |
| 137 | } |
| 138 | |
| 139 | GrSurfaceOrigin fOrigin; |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 140 | GrRenderTarget* fRenderTarget; |
Robert Phillips | 65a88fa | 2017-08-08 08:36:22 -0400 | [diff] [blame] | 141 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 142 | private: |
| 143 | virtual GrGpu* gpu() = 0; |
Greg Daniel | 65a0927 | 2016-10-12 09:47:22 -0400 | [diff] [blame] | 144 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 145 | // overridden by backend-specific derived class to perform the draw call. |
Brian Salomon | ff168d9 | 2018-06-23 15:17:27 -0400 | [diff] [blame] | 146 | virtual void onDraw(const GrPrimitiveProcessor&, |
| 147 | const GrPipeline&, |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 148 | const GrPipeline::FixedDynamicState*, |
| 149 | const GrPipeline::DynamicStateArrays*, |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 150 | const GrMesh[], |
Greg Daniel | 36a77ee | 2016-10-18 10:33:25 -0400 | [diff] [blame] | 151 | int meshCount, |
| 152 | const SkRect& bounds) = 0; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 153 | |
| 154 | // overridden by backend-specific derived class to perform the clear. |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 155 | virtual void onClear(const GrFixedClip&, const SkPMColor4f&) = 0; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 156 | |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 157 | virtual void onClearStencilClip(const GrFixedClip&, bool insideStencilMask) = 0; |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 158 | |
| 159 | typedef GrGpuCommandBuffer INHERITED; |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
| 162 | #endif |