Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | #ifndef GrBackendTextureImageGenerator_DEFINED |
| 8 | #define GrBackendTextureImageGenerator_DEFINED |
| 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "include/core/SkImageGenerator.h" |
| 11 | #include "include/gpu/GrBackendSurface.h" |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 12 | #include "include/gpu/GrDirectContext.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 13 | #include "include/private/GrResourceKey.h" |
| 14 | #include "include/private/SkMutex.h" |
Greg Daniel | 7c90211 | 2020-03-06 13:07:10 -0500 | [diff] [blame] | 15 | #include "src/gpu/GrTexture.h" |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 16 | |
| 17 | class GrSemaphore; |
| 18 | |
Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 19 | /* |
| 20 | * This ImageGenerator is used to wrap a texture in one GrContext and can then be used as a source |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 21 | * in another GrContext. It holds onto a semaphore which the producing GrContext will signal and the |
Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 22 | * consuming GrContext will wait on before using the texture. Only one GrContext can ever be used |
| 23 | * as a consumer (this is mostly because Vulkan can't allow multiple things to wait on the same |
| 24 | * semaphore). |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 25 | * |
| 26 | * In practice, this capability is used by clients to create backend-specific texture resources in |
| 27 | * one thread (with, say, GrContext-A) and then ship them over to another GrContext (say, |
| 28 | * GrContext-B) which will then use the texture as a source for draws. GrContext-A uses the |
| 29 | * semaphore to notify GrContext-B when the shared texture is ready to use. |
Greg Daniel | 966db9e | 2018-01-12 13:15:06 -0500 | [diff] [blame] | 30 | */ |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 31 | class GrBackendTextureImageGenerator : public SkImageGenerator { |
| 32 | public: |
Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 33 | static std::unique_ptr<SkImageGenerator> Make(sk_sp<GrTexture>, GrSurfaceOrigin, |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 34 | std::unique_ptr<GrSemaphore>, SkColorType, |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 35 | SkAlphaType, sk_sp<SkColorSpace>); |
| 36 | |
Stan Iliev | 7e910df | 2017-06-02 10:29:21 -0400 | [diff] [blame] | 37 | ~GrBackendTextureImageGenerator() override; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 38 | |
| 39 | protected: |
Robert Phillips | 4a3ebc2 | 2020-07-10 11:27:43 -0400 | [diff] [blame] | 40 | bool onIsValid(GrRecordingContext* context) const override { |
| 41 | if (context && context->abandoned()) { |
| 42 | return false; |
| 43 | } |
| 44 | return true; |
| 45 | } |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 46 | |
Brian Salomon | ecbb0fb | 2020-02-28 18:07:32 -0500 | [diff] [blame] | 47 | GrSurfaceProxyView onGenerateTexture(GrRecordingContext*, const SkImageInfo&, const SkIPoint&, |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 48 | GrMipmapped mipMapped, GrImageTexGenPolicy) override; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 49 | |
| 50 | private: |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 51 | GrBackendTextureImageGenerator(const SkImageInfo& info, |
| 52 | GrTexture*, |
| 53 | GrSurfaceOrigin, |
| 54 | GrDirectContext::DirectContextID owningContextID, |
| 55 | std::unique_ptr<GrSemaphore>, |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 56 | const GrBackendTexture&); |
| 57 | |
| 58 | static void ReleaseRefHelper_TextureReleaseProc(void* ctx); |
| 59 | |
Mike Klein | 408ef21 | 2018-10-30 15:23:00 +0000 | [diff] [blame] | 60 | class RefHelper : public SkNVRefCnt<RefHelper> { |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 61 | public: |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 62 | RefHelper(GrTexture*, |
| 63 | GrDirectContext::DirectContextID owningContextID, |
| 64 | std::unique_ptr<GrSemaphore>); |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 65 | |
| 66 | ~RefHelper(); |
| 67 | |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 68 | GrTexture* fOriginalTexture; |
| 69 | GrDirectContext::DirectContextID fOwningContextID; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 70 | |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 71 | // We use this key so that we don't rewrap the GrBackendTexture in a GrTexture for each |
| 72 | // proxy created from this generator for a particular borrowing context. |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 73 | GrUniqueKey fBorrowedTextureKey; |
Brian Salomon | b916b7b | 2019-04-01 13:34:34 -0400 | [diff] [blame] | 74 | // There is no ref associated with this pointer. We rely on our atomic bookkeeping with the |
| 75 | // context ID to know when this pointer is valid and safe to use. This is used to make sure |
| 76 | // all uses of the wrapped texture are finished on the borrowing context before we open |
| 77 | // this back up to other contexts. In general a ref to this release proc is owned by all |
| 78 | // proxies and gpu uses of the backend texture. |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 79 | GrRefCntedCallback* fBorrowingContextReleaseProc; |
| 80 | GrDirectContext::DirectContextID fBorrowingContextID; |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 81 | |
Robert Phillips | d074b62 | 2021-03-15 08:49:24 -0400 | [diff] [blame] | 82 | std::unique_ptr<GrSemaphore> fSemaphore; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 83 | }; |
| 84 | |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 85 | RefHelper* fRefHelper; |
Greg Daniel | abba998 | 2018-02-01 10:07:57 -0500 | [diff] [blame] | 86 | // This Mutex is used to guard the borrowing of the texture to one GrContext at a time as well |
| 87 | // as the creation of the fBorrowingContextReleaseProc. The latter happening if two threads with |
| 88 | // the same consuming GrContext try to generate a texture at the same time. |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 89 | SkMutex fBorrowingMutex; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 90 | |
Greg Daniel | 301015c | 2019-11-18 14:06:46 -0500 | [diff] [blame] | 91 | GrBackendTexture fBackendTexture; |
| 92 | GrSurfaceOrigin fSurfaceOrigin; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 93 | |
John Stiles | 7571f9e | 2020-09-02 22:42:33 -0400 | [diff] [blame] | 94 | using INHERITED = SkImageGenerator; |
Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 95 | }; |
| 96 | #endif // GrBackendTextureImageGenerator_DEFINED |