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