diff options
author | Greg Daniel <egdaniel@google.com> | 2018-01-22 16:11:35 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-01-22 21:41:45 +0000 |
commit | 48661b868fbbf7a6193ef49bb6a05a0df61e7c45 (patch) | |
tree | 13582c20667d91e8989f76c224d99f2231714730 /include | |
parent | 2e6feed858c2b14b9083cf7d2b040a177dcb62ea (diff) |
Make use of VkSemaphores thread safe assuming use of the same VkQueue.
This allows us to re-enable support for multiple GrContexts in
GrBackendTextureImageGenerator.
Bug: skia:
Change-Id: Ifd6ac1ad81cdfbd1fd986467d8beb359399d6588
Reviewed-on: https://skia-review.googlesource.com/98340
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkImage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkImage.h b/include/core/SkImage.h index 9ebddc5c45..74d5b90652 100644 --- a/include/core/SkImage.h +++ b/include/core/SkImage.h @@ -171,7 +171,7 @@ public: * Decodes and uploads the encoded data to a GPU backed image using the supplied GrContext. * That image can be safely used by other GrContexts, across thread boundaries. The GrContext * used here, and the ones used to draw this image later must be in the same GL share group, - * or otherwise be able to share resources. + * or use the same Vulkan VkDevice and VkQueue, or otherwise be able to share resources. * * When the image's ref count reaches zero, the original GrContext will destroy the texture, * asynchronously. @@ -187,7 +187,7 @@ public: * Uploads the pixmap to a GPU backed image using the supplied GrContext. * That image can be safely used by other GrContexts, across thread boundaries. The GrContext * used here, and the ones used to draw this image later must be in the same GL share group, - * or otherwise be able to share resources. + * or use the same Vulkan VkDevice and VkQueue, or otherwise be able to share resources. * * When the image's ref count reaches zero, the original GrContext will destroy the texture, * asynchronously. |