reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +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. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 8 | #ifndef GrGpu_DEFINED |
| 9 | #define GrGpu_DEFINED |
| 10 | |
Robert Phillips | e42edcc | 2017-12-13 11:50:22 -0500 | [diff] [blame] | 11 | #include "GrCaps.h" |
egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 12 | #include "GrGpuCommandBuffer.h" |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 13 | #include "GrProgramDesc.h" |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 14 | #include "GrSwizzle.h" |
cdalton | 28f45b9 | 2016-03-07 13:58:26 -0800 | [diff] [blame] | 15 | #include "GrAllocator.h" |
Brian Osman | e8e5458 | 2016-11-28 10:06:27 -0500 | [diff] [blame] | 16 | #include "GrTextureProducer.h" |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 17 | #include "GrTypes.h" |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 18 | #include "GrXferProcessor.h" |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 19 | #include "SkPath.h" |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 20 | #include "SkTArray.h" |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 21 | #include <map> |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 22 | |
Greg Daniel | bcf612b | 2017-05-01 13:50:58 +0000 | [diff] [blame] | 23 | class GrBackendRenderTarget; |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 24 | class GrBackendSemaphore; |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 25 | class GrBuffer; |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 26 | class GrContext; |
robertphillips | 28a838e | 2016-06-23 14:07:00 -0700 | [diff] [blame] | 27 | struct GrContextOptions; |
reed | f9ad558 | 2015-06-25 21:29:25 -0700 | [diff] [blame] | 28 | class GrGLContext; |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 29 | class GrMesh; |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 30 | class GrPath; |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 31 | class GrPathRenderer; |
| 32 | class GrPathRendererChain; |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 33 | class GrPathRendering; |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 34 | class GrPipeline; |
joshualitt | 873ad0e | 2015-01-20 09:08:51 -0800 | [diff] [blame] | 35 | class GrPrimitiveProcessor; |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 36 | class GrRenderTarget; |
Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 37 | class GrSemaphore; |
egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 38 | class GrStencilAttachment; |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 39 | class GrStencilSettings; |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 40 | class GrSurface; |
| 41 | class GrTexture; |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 42 | class SkJSONWriter; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 43 | |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 44 | class GrGpu : public SkRefCnt { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 45 | public: |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 46 | GrGpu(GrContext* context); |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 47 | ~GrGpu() override; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 48 | |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 49 | GrContext* getContext() { return fContext; } |
| 50 | const GrContext* getContext() const { return fContext; } |
| 51 | |
| 52 | /** |
| 53 | * Gets the capabilities of the draw target. |
| 54 | */ |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 55 | const GrCaps* caps() const { return fCaps.get(); } |
Robert Phillips | e42edcc | 2017-12-13 11:50:22 -0500 | [diff] [blame] | 56 | sk_sp<const GrCaps> refCaps() const { return fCaps; } |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 57 | |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 58 | GrPathRendering* pathRendering() { return fPathRendering.get(); } |
kkinnunen | ccdaa04 | 2014-08-20 01:36:23 -0700 | [diff] [blame] | 59 | |
bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 60 | enum class DisconnectType { |
| 61 | // No cleanup should be attempted, immediately cease making backend API calls |
| 62 | kAbandon, |
| 63 | // Free allocated resources (not known by GrResourceCache) before returning and |
| 64 | // ensure no backend backend 3D API calls will be made after disconnect() returns. |
| 65 | kCleanup, |
| 66 | }; |
| 67 | |
| 68 | // Called by GrContext when the underlying backend context is already or will be destroyed |
| 69 | // before GrContext. |
| 70 | virtual void disconnect(DisconnectType); |
bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 71 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 72 | /** |
| 73 | * The GrGpu object normally assumes that no outsider is setting state |
| 74 | * within the underlying 3D API's context/device/whatever. This call informs |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 75 | * the GrGpu that the state was modified and it shouldn't make assumptions |
| 76 | * about the state. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 77 | */ |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 78 | void markContextDirty(uint32_t state = kAll_GrBackendState) { fResetBits |= state; } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 79 | |
| 80 | /** |
bsalomon | 6d467ec | 2014-11-18 07:36:19 -0800 | [diff] [blame] | 81 | * Creates a texture object. If kRenderTarget_GrSurfaceFlag the texture can |
| 82 | * be used as a render target by calling GrTexture::asRenderTarget(). Not all |
| 83 | * pixel configs can be used as render targets. Support for configs as textures |
bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 84 | * or render targets can be checked using GrCaps. |
bsalomon@google.com | 1da0746 | 2011-03-10 14:51:57 +0000 | [diff] [blame] | 85 | * |
Brian Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 86 | * @param desc describes the texture to be created. |
| 87 | * @param budgeted does this texture count against the resource cache budget? |
| 88 | * @param texels array of mipmap levels containing texel data to load. |
| 89 | * Each level begins with full-size palette data for paletted textures. |
| 90 | * It contains width*height texels. If there is only one |
| 91 | * element and it contains nullptr fPixels, texture data is |
| 92 | * uninitialized. |
| 93 | * @param mipLevelCount the number of levels in 'texels' |
| 94 | * @return The texture object if successful, otherwise nullptr. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 95 | */ |
Brian Salomon | 58389b9 | 2018-03-07 13:01:25 -0500 | [diff] [blame] | 96 | sk_sp<GrTexture> createTexture(const GrSurfaceDesc&, SkBudgeted, const GrMipLevel texels[], |
| 97 | int mipLevelCount); |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 98 | |
| 99 | /** |
bsalomon | e699d0c | 2016-03-09 06:25:15 -0800 | [diff] [blame] | 100 | * Simplified createTexture() interface for when there is no initial texel data to upload. |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 101 | */ |
Robert Phillips | 16d8ec6 | 2017-07-27 16:16:25 -0400 | [diff] [blame] | 102 | sk_sp<GrTexture> createTexture(const GrSurfaceDesc& desc, SkBudgeted); |
bsalomon | e699d0c | 2016-03-09 06:25:15 -0800 | [diff] [blame] | 103 | |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 104 | /** |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 105 | * Implements GrResourceProvider::wrapBackendTexture |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 106 | */ |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 107 | sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture&, GrWrapOwnership); |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 108 | |
| 109 | /** |
| 110 | * Implements GrResourceProvider::wrapRenderableBackendTexture |
| 111 | */ |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 112 | sk_sp<GrTexture> wrapRenderableBackendTexture(const GrBackendTexture&, |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 113 | int sampleCnt, GrWrapOwnership); |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 114 | |
| 115 | /** |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 116 | * Implements GrResourceProvider::wrapBackendRenderTarget |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 117 | */ |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 118 | sk_sp<GrRenderTarget> wrapBackendRenderTarget(const GrBackendRenderTarget&); |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 119 | |
| 120 | /** |
Brian Osman | 32342f0 | 2017-03-04 08:12:46 -0500 | [diff] [blame] | 121 | * Implements GrResourceProvider::wrapBackendTextureAsRenderTarget |
ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 122 | */ |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 123 | sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&, |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 124 | int sampleCnt); |
ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 125 | |
| 126 | /** |
csmartdalton | 485a120 | 2016-07-13 10:16:32 -0700 | [diff] [blame] | 127 | * Creates a buffer in GPU memory. For a client-side buffer use GrBuffer::CreateCPUBacked. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 128 | * |
cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 129 | * @param size size of buffer to create. |
| 130 | * @param intendedType hint to the graphics subsystem about what the buffer will be used for. |
| 131 | * @param accessPattern hint to the graphics subsystem about how the data will be accessed. |
cdalton | 1bf3e71 | 2016-04-19 10:00:02 -0700 | [diff] [blame] | 132 | * @param data optional data with which to initialize the buffer. |
cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 133 | * |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 134 | * @return the buffer if successful, otherwise nullptr. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 135 | */ |
cdalton | 1bf3e71 | 2016-04-19 10:00:02 -0700 | [diff] [blame] | 136 | GrBuffer* createBuffer(size_t size, GrBufferType intendedType, GrAccessPattern accessPattern, |
| 137 | const void* data = nullptr); |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 138 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 139 | /** |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 140 | * Resolves MSAA. |
| 141 | */ |
Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 142 | void resolveRenderTarget(GrRenderTarget*); |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 143 | |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 144 | /** Info struct returned by getReadPixelsInfo about performing intermediate draws before |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 145 | reading pixels for performance or correctness. */ |
| 146 | struct ReadPixelTempDrawInfo { |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 147 | /** |
| 148 | * If the GrGpu is requesting that the caller do a draw to an intermediate surface then |
| 149 | * this is descriptor for the temp surface. The draw should always be a rect with dst |
| 150 | * 0,0,w,h. |
| 151 | */ |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 152 | GrSurfaceDesc fTempSurfaceDesc; |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 153 | /** |
| 154 | * Indicates whether there is a performance advantage to using an exact match texture |
| 155 | * (in terms of width and height) for the intermediate texture instead of approximate. |
| 156 | */ |
bsalomon | b117ff1 | 2016-07-19 07:24:40 -0700 | [diff] [blame] | 157 | SkBackingFit fTempSurfaceFit; |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 158 | /** |
| 159 | * Swizzle to apply during the draw. This is used to compensate for either feature or |
| 160 | * performance limitations in the underlying 3D API. |
| 161 | */ |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 162 | GrSwizzle fSwizzle; |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 163 | /** |
| 164 | * The color type that should be used to read from the temp surface after the draw. This |
| 165 | * may be different than the original read color type in order to compensate for swizzling. |
| 166 | * The read data will effectively be in the original color type. The original gamma |
| 167 | * encoding is always used. |
| 168 | */ |
| 169 | GrColorType fReadColorType; |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 170 | }; |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 171 | |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 172 | /** Describes why an intermediate draw must/should be performed before readPixels. */ |
| 173 | enum DrawPreference { |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 174 | /** |
| 175 | * On input means that the caller would proceed without draw if the GrGpu doesn't request |
| 176 | * one. On output means that the GrGpu is not requesting a draw. |
| 177 | */ |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 178 | kNoDraw_DrawPreference, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 179 | /** |
| 180 | * Means that the client would prefer a draw for performance of the readback but |
| 181 | * can satisfy a straight readPixels call on the inputs without an intermediate draw. |
| 182 | * getReadPixelsInfo will never set the draw preference to this value but may leave |
| 183 | * it set. |
| 184 | */ |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 185 | kCallerPrefersDraw_DrawPreference, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 186 | /** |
| 187 | * On output means that GrGpu would prefer a draw for performance of the readback but |
| 188 | * can satisfy a straight readPixels call on the inputs without an intermediate draw. The |
| 189 | * caller of getReadPixelsInfo should never specify this on intput. |
| 190 | */ |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 191 | kGpuPrefersDraw_DrawPreference, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 192 | /** |
| 193 | * On input means that the caller requires a draw to do a transformation and there is no |
| 194 | * CPU fallback. On output means that GrGpu can only satisfy the readPixels request if the |
| 195 | * intermediate draw is performed. |
| 196 | */ |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 197 | kRequireDraw_DrawPreference |
| 198 | }; |
| 199 | |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 200 | /** |
| 201 | * Used to negotiate whether and how an intermediate draw should or must be performed before |
| 202 | * a readPixels call. If this returns false then GrGpu could not deduce an intermediate draw |
| 203 | * that would allow a successful readPixels call. The passed width, height, and rowBytes, |
| 204 | * must be non-zero and already reflect clipping to the src bounds. |
| 205 | */ |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 206 | bool getReadPixelsInfo(GrSurface*, GrSurfaceOrigin, int width, int height, size_t rowBytes, |
| 207 | GrColorType, GrSRGBConversion, DrawPreference*, ReadPixelTempDrawInfo*); |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 208 | |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 209 | /** |
| 210 | * Info struct returned by getWritePixelsInfo about performing an intermediate draw in order |
| 211 | * to write pixels to a GrSurface for either performance or correctness reasons. |
| 212 | */ |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 213 | struct WritePixelTempDrawInfo { |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 214 | /** |
| 215 | * If the GrGpu is requesting that the caller upload to an intermediate surface and draw |
| 216 | * that to the dst then this is the descriptor for the intermediate surface. The caller |
| 217 | * should upload the pixels such that the upper left pixel of the upload rect is at 0,0 in |
| 218 | * the intermediate surface |
| 219 | */ |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 220 | GrSurfaceDesc fTempSurfaceDesc; |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 221 | /** |
| 222 | * Swizzle to apply during the draw. This is used to compensate for either feature or |
| 223 | * performance limitations in the underlying 3D API. |
| 224 | */ |
bsalomon | 6c9cd55 | 2016-01-22 07:17:34 -0800 | [diff] [blame] | 225 | GrSwizzle fSwizzle; |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 226 | /** |
| 227 | * The color type that should be specified when uploading the *original* data to the temp |
| 228 | * surface before the draw. This may be different than the original src color type in |
| 229 | * order to compensate for swizzling that will occur when drawing. The original gamma |
| 230 | * encoding is always used. |
| 231 | */ |
| 232 | GrColorType fWriteColorType; |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 233 | }; |
bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 234 | |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 235 | /** |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 236 | * Used to negotiate whether and how an intermediate surface should be used to write pixels to |
| 237 | * a GrSurface. If this returns false then GrGpu could not deduce an intermediate draw |
| 238 | * that would allow a successful transfer of the src pixels to the dst. The passed width, |
| 239 | * height, and rowBytes, must be non-zero and already reflect clipping to the dst bounds. |
bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 240 | */ |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 241 | bool getWritePixelsInfo(GrSurface*, GrSurfaceOrigin, int width, int height, GrColorType, |
| 242 | GrSRGBConversion, DrawPreference*, WritePixelTempDrawInfo*); |
bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 243 | |
| 244 | /** |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 245 | * Reads a rectangle of pixels from a render target. No sRGB/linear conversions are performed. |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 246 | * |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 247 | * @param surface The surface to read from |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 248 | * @param left left edge of the rectangle to read (inclusive) |
| 249 | * @param top top edge of the rectangle to read (inclusive) |
| 250 | * @param width width of rectangle to read in pixels. |
| 251 | * @param height height of rectangle to read in pixels. |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 252 | * @param dstColorType the color type of the destination buffer. |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 253 | * @param buffer memory to read the rectangle into. |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 254 | * @param rowBytes the number of bytes between consecutive rows. Zero |
| 255 | * means rows are tightly packed. |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 256 | * @param invertY buffer should be populated bottom-to-top as opposed |
| 257 | * to top-to-bottom (skia's usual order) |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 258 | * |
| 259 | * @return true if the read succeeded, false if not. The read can fail |
| 260 | * because of a unsupported pixel config or because no render |
| 261 | * target is currently set. |
| 262 | */ |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 263 | bool readPixels(GrSurface* surface, GrSurfaceOrigin, int left, int top, int width, int height, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 264 | GrColorType dstColorType, void* buffer, size_t rowBytes); |
Brian Salomon | 19eaf2d | 2018-03-19 16:06:44 -0400 | [diff] [blame] | 265 | /** |
| 266 | * This version of readPixels doesn't take an origin. TODO: Remove origin handling from |
| 267 | * GrGpu::readPixels entirely. |
| 268 | */ |
| 269 | bool readPixels(GrSurface* surface, int left, int top, int width, int height, |
| 270 | GrColorType dstColorType, void* buffer, size_t rowBytes) { |
| 271 | return this->readPixels(surface, kTopLeft_GrSurfaceOrigin, left, top, width, height, |
| 272 | dstColorType, buffer, rowBytes); |
| 273 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 274 | |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 275 | /** |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 276 | * Updates the pixels in a rectangle of a surface. No sRGB/linear conversions are performed. |
bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 277 | * |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 278 | * @param surface The surface to write to. |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 279 | * @param left left edge of the rectangle to write (inclusive) |
| 280 | * @param top top edge of the rectangle to write (inclusive) |
| 281 | * @param width width of rectangle to write in pixels. |
| 282 | * @param height height of rectangle to write in pixels. |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 283 | * @param srcColorType the color type of the source buffer. |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 284 | * @param texels array of mipmap levels containing texture data |
Robert Phillips | 590533f | 2017-07-11 14:22:35 -0400 | [diff] [blame] | 285 | * @param mipLevelCount number of levels in 'texels' |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 286 | */ |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 287 | bool writePixels(GrSurface* surface, GrSurfaceOrigin origin, int left, int top, int width, |
| 288 | int height, GrColorType srcColorType, const GrMipLevel texels[], |
| 289 | int mipLevelCount); |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 290 | |
| 291 | /** |
| 292 | * This function is a shim which creates a SkTArray<GrMipLevel> of size 1. |
| 293 | * It then calls writePixels with that SkTArray. |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 294 | */ |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 295 | bool writePixels(GrSurface*, GrSurfaceOrigin, int left, int top, int width, int height, |
| 296 | GrColorType, const void* buffer, size_t rowBytes); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 297 | |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 298 | /** |
Brian Salomon | 5f33a8c | 2018-02-26 14:32:39 -0500 | [diff] [blame] | 299 | * This version of writePixels doesn't take an origin. TODO: Remove origin handling from |
| 300 | * GrGpu::writePixels entirely. |
| 301 | */ |
| 302 | bool writePixels(GrSurface* surface, int left, int top, int width, int height, |
| 303 | GrColorType srcColorType, const void* buffer, size_t rowBytes) { |
| 304 | return this->writePixels(surface, kTopLeft_GrSurfaceOrigin, left, top, width, height, |
| 305 | srcColorType, buffer, rowBytes); |
| 306 | } |
| 307 | |
| 308 | /** |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 309 | * Updates the pixels in a rectangle of a texture using a buffer |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 310 | * |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 311 | * There are a couple of assumptions here. First, we only update the top miplevel. |
| 312 | * And second, that any y flip needed has already been done in the buffer. |
| 313 | * |
| 314 | * @param texture The texture to write to. |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 315 | * @param left left edge of the rectangle to write (inclusive) |
| 316 | * @param top top edge of the rectangle to write (inclusive) |
| 317 | * @param width width of rectangle to write in pixels. |
| 318 | * @param height height of rectangle to write in pixels. |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 319 | * @param bufferColorType the color type of the transfer buffer's pixel data |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 320 | * @param transferBuffer GrBuffer to read pixels from (type must be "kXferCpuToGpu") |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 321 | * @param offset offset from the start of the buffer |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 322 | * @param rowBytes number of bytes between consecutive rows in the buffer. Zero |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 323 | * means rows are tightly packed. |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 324 | */ |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 325 | bool transferPixels(GrTexture* texture, int left, int top, int width, int height, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 326 | GrColorType bufferColorType, GrBuffer* transferBuffer, size_t offset, |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 327 | size_t rowBytes); |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 328 | |
bsalomon@google.com | 80d09b9 | 2011-11-05 21:21:13 +0000 | [diff] [blame] | 329 | // After the client interacts directly with the 3D context state the GrGpu |
| 330 | // must resync its internal state and assumptions about 3D context state. |
| 331 | // Each time this occurs the GrGpu bumps a timestamp. |
| 332 | // state of the 3D context |
| 333 | // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about |
| 334 | // a billion years. |
| 335 | typedef uint64_t ResetTimestamp; |
| 336 | |
| 337 | // This timestamp is always older than the current timestamp |
| 338 | static const ResetTimestamp kExpiredTimestamp = 0; |
| 339 | // Returns a timestamp based on the number of times the context was reset. |
| 340 | // This timestamp can be used to lazily detect when cached 3D context state |
| 341 | // is dirty. |
bsalomon | 6d467ec | 2014-11-18 07:36:19 -0800 | [diff] [blame] | 342 | ResetTimestamp getResetTimestamp() const { return fResetTimestamp; } |
bsalomon@google.com | 80d09b9 | 2011-11-05 21:21:13 +0000 | [diff] [blame] | 343 | |
bsalomon | f90a02b | 2014-11-26 12:28:00 -0800 | [diff] [blame] | 344 | // Called to perform a surface to surface copy. Fallbacks to issuing a draw from the src to dst |
Robert Phillips | f2361d2 | 2016-10-25 14:20:06 -0400 | [diff] [blame] | 345 | // take place at the GrOpList level and this function implement faster copy paths. The rect |
bsalomon | f90a02b | 2014-11-26 12:28:00 -0800 | [diff] [blame] | 346 | // and point are pre-clipped. The src rect and implied dst rect are guaranteed to be within the |
Greg Daniel | 55fa647 | 2018-03-16 16:13:10 -0400 | [diff] [blame] | 347 | // src/dst bounds and non-empty. If canDiscardOutsideDstRect is set to true then we don't need |
| 348 | // to preserve any data on the dst surface outside of the copy. |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 349 | bool copySurface(GrSurface* dst, GrSurfaceOrigin dstOrigin, |
| 350 | GrSurface* src, GrSurfaceOrigin srcOrigin, |
joshualitt | 1cbdcde | 2015-08-21 11:53:29 -0700 | [diff] [blame] | 351 | const SkIRect& srcRect, |
Greg Daniel | 55fa647 | 2018-03-16 16:13:10 -0400 | [diff] [blame] | 352 | const SkIPoint& dstPoint, |
| 353 | bool canDiscardOutsideDstRect = false); |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 354 | |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 355 | // Creates a GrGpuRTCommandBuffer which GrOpLists send draw commands to instead of directly |
| 356 | // to the Gpu object. |
| 357 | virtual GrGpuRTCommandBuffer* createCommandBuffer( |
Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 358 | GrRenderTarget*, GrSurfaceOrigin, |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 359 | const GrGpuRTCommandBuffer::LoadAndStoreInfo&, |
| 360 | const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo&) = 0; |
| 361 | |
| 362 | // Creates a GrGpuTextureCommandBuffer which GrOpLists send texture commands to instead of |
| 363 | // directly to the Gpu object. |
| 364 | virtual GrGpuTextureCommandBuffer* createCommandBuffer(GrTexture*, GrSurfaceOrigin) = 0; |
bsalomon | 3e79124 | 2014-12-17 13:43:13 -0800 | [diff] [blame] | 365 | |
Robert Phillips | 18e9484 | 2017-05-15 13:06:44 -0400 | [diff] [blame] | 366 | // Called by GrDrawingManager when flushing. |
Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 367 | // Provides a hook for post-flush actions (e.g. Vulkan command buffer submits). This will also |
| 368 | // insert any numSemaphore semaphores on the gpu and set the backendSemaphores to match the |
| 369 | // inserted semaphores. |
| 370 | GrSemaphoresSubmitted finishFlush(int numSemaphores, GrBackendSemaphore backendSemaphores[]); |
ethannicholas | 2279325 | 2016-01-30 09:59:10 -0800 | [diff] [blame] | 371 | |
Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 372 | virtual GrFence SK_WARN_UNUSED_RESULT insertFence() = 0; |
| 373 | virtual bool waitFence(GrFence, uint64_t timeout = 1000) = 0; |
jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 374 | virtual void deleteFence(GrFence) const = 0; |
| 375 | |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 376 | virtual sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true) = 0; |
Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 377 | virtual sk_sp<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore& semaphore, |
| 378 | GrResourceProvider::SemaphoreWrapType wrapType, |
| 379 | GrWrapOwnership ownership) = 0; |
| 380 | virtual void insertSemaphore(sk_sp<GrSemaphore> semaphore, bool flush = false) = 0; |
| 381 | virtual void waitSemaphore(sk_sp<GrSemaphore> semaphore) = 0; |
Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 382 | |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 383 | /** |
| 384 | * Put this texture in a safe and known state for use across multiple GrContexts. Depending on |
| 385 | * the backend, this may return a GrSemaphore. If so, other contexts should wait on that |
| 386 | * semaphore before using this texture. |
| 387 | */ |
| 388 | virtual sk_sp<GrSemaphore> prepareTextureForCrossContextUsage(GrTexture*) = 0; |
| 389 | |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 390 | /////////////////////////////////////////////////////////////////////////// |
| 391 | // Debugging and Stats |
| 392 | |
| 393 | class Stats { |
| 394 | public: |
| 395 | #if GR_GPU_STATS |
| 396 | Stats() { this->reset(); } |
| 397 | |
bsalomon | b12ea41 | 2015-02-02 21:19:50 -0800 | [diff] [blame] | 398 | void reset() { |
| 399 | fRenderTargetBinds = 0; |
| 400 | fShaderCompilations = 0; |
| 401 | fTextureCreates = 0; |
| 402 | fTextureUploads = 0; |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 403 | fTransfersToTexture = 0; |
egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 404 | fStencilAttachmentCreates = 0; |
joshualitt | 87a5c9f | 2015-09-08 13:42:05 -0700 | [diff] [blame] | 405 | fNumDraws = 0; |
bsalomon | 1d417a8 | 2016-03-23 11:50:26 -0700 | [diff] [blame] | 406 | fNumFailedDraws = 0; |
bsalomon | b12ea41 | 2015-02-02 21:19:50 -0800 | [diff] [blame] | 407 | } |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 408 | |
| 409 | int renderTargetBinds() const { return fRenderTargetBinds; } |
| 410 | void incRenderTargetBinds() { fRenderTargetBinds++; } |
| 411 | int shaderCompilations() const { return fShaderCompilations; } |
| 412 | void incShaderCompilations() { fShaderCompilations++; } |
bsalomon | b12ea41 | 2015-02-02 21:19:50 -0800 | [diff] [blame] | 413 | int textureCreates() const { return fTextureCreates; } |
| 414 | void incTextureCreates() { fTextureCreates++; } |
| 415 | int textureUploads() const { return fTextureUploads; } |
| 416 | void incTextureUploads() { fTextureUploads++; } |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 417 | int transfersToTexture() const { return fTransfersToTexture; } |
| 418 | void incTransfersToTexture() { fTransfersToTexture++; } |
egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 419 | void incStencilAttachmentCreates() { fStencilAttachmentCreates++; } |
joshualitt | 87a5c9f | 2015-09-08 13:42:05 -0700 | [diff] [blame] | 420 | void incNumDraws() { fNumDraws++; } |
bsalomon | 1d417a8 | 2016-03-23 11:50:26 -0700 | [diff] [blame] | 421 | void incNumFailedDraws() { ++fNumFailedDraws; } |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 422 | void dump(SkString*); |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 423 | void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values); |
bsalomon | 1d417a8 | 2016-03-23 11:50:26 -0700 | [diff] [blame] | 424 | int numDraws() const { return fNumDraws; } |
| 425 | int numFailedDraws() const { return fNumFailedDraws; } |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 426 | private: |
| 427 | int fRenderTargetBinds; |
| 428 | int fShaderCompilations; |
bsalomon | b12ea41 | 2015-02-02 21:19:50 -0800 | [diff] [blame] | 429 | int fTextureCreates; |
| 430 | int fTextureUploads; |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 431 | int fTransfersToTexture; |
egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 432 | int fStencilAttachmentCreates; |
joshualitt | 87a5c9f | 2015-09-08 13:42:05 -0700 | [diff] [blame] | 433 | int fNumDraws; |
bsalomon | 1d417a8 | 2016-03-23 11:50:26 -0700 | [diff] [blame] | 434 | int fNumFailedDraws; |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 435 | #else |
joshualitt | e45c81c | 2015-12-02 09:05:37 -0800 | [diff] [blame] | 436 | void dump(SkString*) {} |
| 437 | void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {} |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 438 | void incRenderTargetBinds() {} |
| 439 | void incShaderCompilations() {} |
bsalomon | b12ea41 | 2015-02-02 21:19:50 -0800 | [diff] [blame] | 440 | void incTextureCreates() {} |
| 441 | void incTextureUploads() {} |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 442 | void incTransfersToTexture() {} |
egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 443 | void incStencilAttachmentCreates() {} |
joshualitt | 87a5c9f | 2015-09-08 13:42:05 -0700 | [diff] [blame] | 444 | void incNumDraws() {} |
bsalomon | 1d417a8 | 2016-03-23 11:50:26 -0700 | [diff] [blame] | 445 | void incNumFailedDraws() {} |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 446 | #endif |
| 447 | }; |
| 448 | |
| 449 | Stats* stats() { return &fStats; } |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 450 | void dumpJSON(SkJSONWriter*) const; |
mtklein | b9eb4ac | 2015-02-02 18:26:03 -0800 | [diff] [blame] | 451 | |
Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 452 | #if GR_TEST_UTILS |
bsalomon | 67d7620 | 2015-11-11 12:40:42 -0800 | [diff] [blame] | 453 | /** Creates a texture directly in the backend API without wrapping it in a GrTexture. This is |
| 454 | only to be used for testing (particularly for testing the methods that import an externally |
| 455 | created texture into Skia. Must be matched with a call to deleteTestingOnlyTexture(). */ |
Brian Salomon | 52e943a | 2018-03-13 09:32:39 -0400 | [diff] [blame] | 456 | GrBackendTexture createTestingOnlyBackendTexture(const void* pixels, int w, int h, SkColorType, |
Greg Daniel | 57bf4a3 | 2018-04-19 10:28:37 -0400 | [diff] [blame] | 457 | SkColorSpace* cs, bool isRenderTarget, |
| 458 | GrMipMapped); |
Brian Salomon | bdecacf | 2018-02-02 20:32:49 -0500 | [diff] [blame] | 459 | /** Older version based on GrPixelConfig. Currently the preferred one above devolves to this. */ |
Brian Salomon | 52e943a | 2018-03-13 09:32:39 -0400 | [diff] [blame] | 460 | virtual GrBackendTexture createTestingOnlyBackendTexture(const void* pixels, int w, int h, |
| 461 | GrPixelConfig config, |
| 462 | bool isRenderTarget, |
| 463 | GrMipMapped mipMapped) = 0; |
Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 464 | /** Check a handle represents an actual texture in the backend API that has not been freed. */ |
| 465 | virtual bool isTestingOnlyBackendTexture(const GrBackendTexture&) const = 0; |
Brian Salomon | e64b064 | 2018-03-07 11:47:54 -0500 | [diff] [blame] | 466 | /** |
| 467 | * Frees a texture created by createTestingOnlyBackendTexture(). If ownership of the backend |
| 468 | * texture has been transferred to a GrContext using adopt semantics this should not be called. |
| 469 | */ |
Brian Salomon | 26102cb | 2018-03-09 09:33:19 -0500 | [diff] [blame] | 470 | virtual void deleteTestingOnlyBackendTexture(const GrBackendTexture&) = 0; |
jvanverth | 672bb7f | 2015-07-13 07:19:57 -0700 | [diff] [blame] | 471 | |
Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 472 | virtual GrBackendRenderTarget createTestingOnlyBackendRenderTarget(int w, int h, GrColorType, |
| 473 | GrSRGBEncoded) = 0; |
| 474 | |
| 475 | virtual void deleteTestingOnlyBackendRenderTarget(const GrBackendRenderTarget&) = 0; |
| 476 | |
| 477 | // This is only to be used in GL-specific tests. |
| 478 | virtual const GrGLContext* glContextForTesting() const { return nullptr; } |
| 479 | |
| 480 | // This is only to be used by testing code |
| 481 | virtual void resetShaderCacheForTesting() const {} |
| 482 | |
Greg Daniel | 26b50a4 | 2018-03-08 09:49:58 -0500 | [diff] [blame] | 483 | /** |
| 484 | * Flushes all work to the gpu and forces the GPU to wait until all the gpu work has completed. |
| 485 | * This is for testing purposes only. |
| 486 | */ |
| 487 | virtual void testingOnly_flushGpuAndSync() = 0; |
Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 488 | #endif |
Greg Daniel | 26b50a4 | 2018-03-08 09:49:58 -0500 | [diff] [blame] | 489 | |
egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 490 | // width and height may be larger than rt (if underlying API allows it). |
| 491 | // Returns nullptr if compatible sb could not be created, otherwise the caller owns the ref on |
| 492 | // the GrStencilAttachment. |
| 493 | virtual GrStencilAttachment* createStencilAttachmentForRenderTarget(const GrRenderTarget*, |
| 494 | int width, |
| 495 | int height) = 0; |
| 496 | // clears target's entire stencil buffer to 0 |
Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 497 | virtual void clearStencil(GrRenderTarget* target, int clearValue) = 0; |
bsalomon | 6bc1b5f | 2015-02-23 09:06:38 -0800 | [diff] [blame] | 498 | |
bsalomon | e179a91 | 2016-01-20 06:18:10 -0800 | [diff] [blame] | 499 | // Determines whether a texture will need to be rescaled in order to be used with the |
Robert Phillips | abf7b76 | 2018-03-21 12:13:37 -0400 | [diff] [blame] | 500 | // GrSamplerState. |
| 501 | static bool IsACopyNeededForTextureParams(const GrCaps*, GrTextureProxy* texProxy, |
| 502 | int width, int height, |
Robert Phillips | c7c2baf | 2018-03-08 09:51:04 -0500 | [diff] [blame] | 503 | const GrSamplerState&, GrTextureProducer::CopyParams*, |
| 504 | SkScalar scaleAdjust[2]); |
bsalomon | e179a91 | 2016-01-20 06:18:10 -0800 | [diff] [blame] | 505 | |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 506 | void handleDirtyContext() { |
| 507 | if (fResetBits) { |
| 508 | this->resetContext(); |
| 509 | } |
| 510 | } |
| 511 | |
joshualitt | d53a827 | 2014-11-10 16:03:14 -0800 | [diff] [blame] | 512 | protected: |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 513 | static void ElevateDrawPreference(GrGpu::DrawPreference* preference, |
| 514 | GrGpu::DrawPreference elevation) { |
| 515 | GR_STATIC_ASSERT(GrGpu::kCallerPrefersDraw_DrawPreference > GrGpu::kNoDraw_DrawPreference); |
| 516 | GR_STATIC_ASSERT(GrGpu::kGpuPrefersDraw_DrawPreference > |
| 517 | GrGpu::kCallerPrefersDraw_DrawPreference); |
| 518 | GR_STATIC_ASSERT(GrGpu::kRequireDraw_DrawPreference > |
| 519 | GrGpu::kGpuPrefersDraw_DrawPreference); |
| 520 | *preference = SkTMax(*preference, elevation); |
| 521 | } |
| 522 | |
Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 523 | // Handles cases where a surface will be updated without a call to flushRenderTarget. |
| 524 | void didWriteToSurface(GrSurface* surface, GrSurfaceOrigin origin, const SkIRect* bounds, |
| 525 | uint32_t mipLevels = 1) const; |
jvanverth | 900bd4a | 2016-04-29 13:53:12 -0700 | [diff] [blame] | 526 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 527 | Stats fStats; |
| 528 | std::unique_ptr<GrPathRendering> fPathRendering; |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 529 | // Subclass must initialize this in its constructor. |
Hal Canary | 144caf5 | 2016-11-07 17:57:18 -0500 | [diff] [blame] | 530 | sk_sp<const GrCaps> fCaps; |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 531 | |
csmartdalton | 0d28e57 | 2016-07-06 09:59:43 -0700 | [diff] [blame] | 532 | typedef SkTArray<SkPoint, true> SamplePattern; |
| 533 | |
bsalomon@google.com | 02ddc8b | 2013-01-28 15:35:28 +0000 | [diff] [blame] | 534 | private: |
bsalomon@google.com | b635d39 | 2011-11-05 12:47:43 +0000 | [diff] [blame] | 535 | // called when the 3D context state is unknown. Subclass should emit any |
bsalomon@google.com | c8f7f47 | 2012-06-18 13:44:51 +0000 | [diff] [blame] | 536 | // assumed 3D context state and dirty any state cache. |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 537 | virtual void onResetContext(uint32_t resetBits) = 0; |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 538 | |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 539 | // Called before certain draws in order to guarantee coherent results from dst reads. |
| 540 | virtual void xferBarrier(GrRenderTarget*, GrXferBarrierType) = 0; |
| 541 | |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 542 | // overridden by backend-specific derived class to create objects. |
egdaniel | b0e1be2 | 2015-04-22 13:27:39 -0700 | [diff] [blame] | 543 | // Texture size and sample size will have already been validated in base class before |
Robert Phillips | 92de631 | 2017-05-23 07:43:48 -0400 | [diff] [blame] | 544 | // onCreateTexture is called. |
Robert Phillips | 16d8ec6 | 2017-07-27 16:16:25 -0400 | [diff] [blame] | 545 | virtual sk_sp<GrTexture> onCreateTexture(const GrSurfaceDesc&, SkBudgeted, |
Brian Salomon | 2a4f983 | 2018-03-03 22:43:43 -0500 | [diff] [blame] | 546 | const GrMipLevel texels[], int mipLevelCount) = 0; |
cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 547 | |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 548 | virtual sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, GrWrapOwnership) = 0; |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 549 | virtual sk_sp<GrTexture> onWrapRenderableBackendTexture(const GrBackendTexture&, |
Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 550 | int sampleCnt, |
| 551 | GrWrapOwnership) = 0; |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 552 | virtual sk_sp<GrRenderTarget> onWrapBackendRenderTarget(const GrBackendRenderTarget&) = 0; |
Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 553 | virtual sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&, |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 554 | int sampleCnt) = 0; |
cdalton | 1bf3e71 | 2016-04-19 10:00:02 -0700 | [diff] [blame] | 555 | virtual GrBuffer* onCreateBuffer(size_t size, GrBufferType intendedType, GrAccessPattern, |
| 556 | const void* data) = 0; |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 557 | |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 558 | virtual bool onGetReadPixelsInfo(GrSurface*, GrSurfaceOrigin, int width, int height, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 559 | size_t rowBytes, GrColorType, DrawPreference*, |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 560 | ReadPixelTempDrawInfo*) = 0; |
Brian Salomon | 9b009bb | 2018-02-14 13:53:55 -0500 | [diff] [blame] | 561 | virtual bool onGetWritePixelsInfo(GrSurface*, GrSurfaceOrigin, int width, int height, |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 562 | GrColorType, DrawPreference*, WritePixelTempDrawInfo*) = 0; |
bsalomon | f067451 | 2015-07-28 13:26:15 -0700 | [diff] [blame] | 563 | |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 564 | // overridden by backend-specific derived class to perform the surface read |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 565 | virtual bool onReadPixels(GrSurface*, GrSurfaceOrigin, int left, int top, int width, int height, |
| 566 | GrColorType, void* buffer, size_t rowBytes) = 0; |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 567 | |
bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 568 | // overridden by backend-specific derived class to perform the surface write |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 569 | virtual bool onWritePixels(GrSurface*, GrSurfaceOrigin, int left, int top, int width, |
| 570 | int height, GrColorType, const GrMipLevel texels[], |
| 571 | int mipLevelCount) = 0; |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 572 | |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 573 | // overridden by backend-specific derived class to perform the texture transfer |
Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 574 | virtual bool onTransferPixels(GrTexture*, int left, int top, int width, int height, |
| 575 | GrColorType colorType, GrBuffer* transferBuffer, size_t offset, |
| 576 | size_t rowBytes) = 0; |
jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 577 | |
bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 578 | // overridden by backend-specific derived class to perform the resolve |
Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 579 | virtual void onResolveRenderTarget(GrRenderTarget* target) = 0; |
bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 580 | |
joshualitt | 1cbdcde | 2015-08-21 11:53:29 -0700 | [diff] [blame] | 581 | // overridden by backend specific derived class to perform the copy surface |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 582 | virtual bool onCopySurface(GrSurface* dst, GrSurfaceOrigin dstOrigin, |
| 583 | GrSurface* src, GrSurfaceOrigin srcOrigin, |
Greg Daniel | 55fa647 | 2018-03-16 16:13:10 -0400 | [diff] [blame] | 584 | const SkIRect& srcRect, const SkIPoint& dstPoint, |
| 585 | bool canDiscardOutsideDstRect) = 0; |
joshualitt | 1cbdcde | 2015-08-21 11:53:29 -0700 | [diff] [blame] | 586 | |
Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 587 | virtual void onFinishFlush(bool insertedSemaphores) = 0; |
| 588 | |
Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 589 | virtual void onDumpJSON(SkJSONWriter*) const {} |
| 590 | |
bsalomon@google.com | b635d39 | 2011-11-05 12:47:43 +0000 | [diff] [blame] | 591 | void resetContext() { |
bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 592 | this->onResetContext(fResetBits); |
| 593 | fResetBits = 0; |
bsalomon@google.com | b635d39 | 2011-11-05 12:47:43 +0000 | [diff] [blame] | 594 | ++fResetTimestamp; |
| 595 | } |
| 596 | |
Chris Dalton | 535ba8d | 2018-02-20 09:51:59 -0700 | [diff] [blame] | 597 | ResetTimestamp fResetTimestamp; |
| 598 | uint32_t fResetBits; |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 599 | // The context owns us, not vice-versa, so this ptr is not ref'ed by Gpu. |
Chris Dalton | 535ba8d | 2018-02-20 09:51:59 -0700 | [diff] [blame] | 600 | GrContext* fContext; |
bsalomon@google.com | 02ddc8b | 2013-01-28 15:35:28 +0000 | [diff] [blame] | 601 | |
kkinnunen | cabe20c | 2015-06-01 01:37:26 -0700 | [diff] [blame] | 602 | friend class GrPathRendering; |
joshualitt | 3322fa4 | 2014-11-07 08:48:51 -0800 | [diff] [blame] | 603 | typedef SkRefCnt INHERITED; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 604 | }; |
| 605 | |
| 606 | #endif |