2017-06-16 13:45:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GrBackendSemaphore_DEFINED
|
|
|
|
#define GrBackendSemaphore_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/GrTypes.h"
|
2017-06-16 13:45:32 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/gl/GrGLTypes.h"
|
2019-08-28 18:35:55 +00:00
|
|
|
#include "include/gpu/mtl/GrMtlTypes.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/vk/GrVkTypes.h"
|
2020-06-25 17:10:29 +00:00
|
|
|
#ifdef SK_DIRECT3D
|
|
|
|
#include "include/gpu/d3d/GrD3DTypesMinimal.h"
|
|
|
|
#endif
|
2017-06-16 13:45:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper class for passing into and receiving data from Ganesh about a backend semaphore object.
|
|
|
|
*/
|
|
|
|
class GrBackendSemaphore {
|
|
|
|
public:
|
|
|
|
// For convenience we just set the backend here to OpenGL. The GrBackendSemaphore cannot be used
|
|
|
|
// until either initGL or initVulkan are called which will set the appropriate GrBackend.
|
2018-10-12 13:31:11 +00:00
|
|
|
GrBackendSemaphore() : fBackend(GrBackendApi::kOpenGL), fGLSync(0), fIsInitialized(false) {}
|
2017-06-16 13:45:32 +00:00
|
|
|
|
2020-06-25 17:10:29 +00:00
|
|
|
#ifdef SK_DIRECT3D
|
|
|
|
// We only need to specify these if Direct3D is enabled, because it requires special copy
|
|
|
|
// characteristics.
|
|
|
|
~GrBackendSemaphore();
|
|
|
|
GrBackendSemaphore(const GrBackendSemaphore&);
|
|
|
|
GrBackendSemaphore& operator=(const GrBackendSemaphore&);
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 13:45:32 +00:00
|
|
|
void initGL(GrGLsync sync) {
|
2018-10-12 13:31:11 +00:00
|
|
|
fBackend = GrBackendApi::kOpenGL;
|
2017-06-16 13:45:32 +00:00
|
|
|
fGLSync = sync;
|
|
|
|
fIsInitialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void initVulkan(VkSemaphore semaphore) {
|
2018-10-12 13:31:11 +00:00
|
|
|
fBackend = GrBackendApi::kVulkan;
|
2017-06-16 13:45:32 +00:00
|
|
|
fVkSemaphore = semaphore;
|
Reland "Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN.""
This reverts commit a55e214bbe3942a098d97906a0f008d59dd1fafb.
Reason for revert:google3 should be fixed now
Original change's description:
> Revert "Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN.""
>
> This reverts commit 55aea84baa53f2d7e7e876b09fd590f046ff9ab9.
>
> Reason for revert: Google3 roll failing like
>
> third_party/skia/HEAD/include/gpu/vk/GrVkDefines.h:15:10: fatal error: '../../../third_party/vulkan/SkiaVulkan.h' file not found
> #include "../../../third_party/vulkan/SkiaVulkan.h"
>
>
> Original change's description:
> > Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN."
> >
> > This reverts commit 684b506f3589ecc78eebe8d92082be31a5fbe348.
> >
> > Reason for revert: Chrome change has landed to fix broken chrome roll.
> >
> > Original change's description:
> > > Revert "Always include public/include headers for vulkan and just guard src files with SK_VULKAN."
> > >
> > > This reverts commit 6e2d607334cc57c22e3a52179743763828ea84b2.
> > >
> > > Reason for revert: chrome roll
> > >
> > > Original change's description:
> > > > Always include public/include headers for vulkan and just guard src files with SK_VULKAN.
> > > >
> > > > This should allow a client to build a skia library that doesn't use vulkan but still
> > > > has all the public headers defined so that they don't have to build two versions of
> > > > their code.
> > > >
> > > > Bug: chromium:862144
> > > > Change-Id: I0eecbe0bc48123619f217e2cf318eb9a8c77ccb2
> > > > Reviewed-on: https://skia-review.googlesource.com/158661
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,cblume@chromium.org
> > >
> > > Change-Id: I76ae6f435333755fa5d546fc1e5999a324b4fd05
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Bug: chromium:862144
> > > Reviewed-on: https://skia-review.googlesource.com/c/159000
> > > Reviewed-by: Mike Klein <mtklein@google.com>
> > > Commit-Queue: Mike Klein <mtklein@google.com>
> >
> > TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
> >
> > Change-Id: Id019b428f880efbd7ead8dee4178c6190469a290
> > No-Presubmit: true
> > No-Tree-Checks: true
> > No-Try: true
> > Bug: chromium:862144
> > Reviewed-on: https://skia-review.googlesource.com/c/159145
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
>
> Change-Id: I0e5c72e2d79dac28021b02168a9e11ac08db765c
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: chromium:862144
> Reviewed-on: https://skia-review.googlesource.com/c/159155
> Reviewed-by: Mike Klein <mtklein@google.com>
> Commit-Queue: Mike Klein <mtklein@google.com>
TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
Change-Id: I58f7f8ca5281cd5fe0c145c01e9b9465c9b9ec31
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: chromium:862144
Reviewed-on: https://skia-review.googlesource.com/159260
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2018-10-03 18:44:49 +00:00
|
|
|
#ifdef SK_VULKAN
|
2017-06-16 13:45:32 +00:00
|
|
|
fIsInitialized = true;
|
Reland "Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN.""
This reverts commit a55e214bbe3942a098d97906a0f008d59dd1fafb.
Reason for revert:google3 should be fixed now
Original change's description:
> Revert "Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN.""
>
> This reverts commit 55aea84baa53f2d7e7e876b09fd590f046ff9ab9.
>
> Reason for revert: Google3 roll failing like
>
> third_party/skia/HEAD/include/gpu/vk/GrVkDefines.h:15:10: fatal error: '../../../third_party/vulkan/SkiaVulkan.h' file not found
> #include "../../../third_party/vulkan/SkiaVulkan.h"
>
>
> Original change's description:
> > Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN."
> >
> > This reverts commit 684b506f3589ecc78eebe8d92082be31a5fbe348.
> >
> > Reason for revert: Chrome change has landed to fix broken chrome roll.
> >
> > Original change's description:
> > > Revert "Always include public/include headers for vulkan and just guard src files with SK_VULKAN."
> > >
> > > This reverts commit 6e2d607334cc57c22e3a52179743763828ea84b2.
> > >
> > > Reason for revert: chrome roll
> > >
> > > Original change's description:
> > > > Always include public/include headers for vulkan and just guard src files with SK_VULKAN.
> > > >
> > > > This should allow a client to build a skia library that doesn't use vulkan but still
> > > > has all the public headers defined so that they don't have to build two versions of
> > > > their code.
> > > >
> > > > Bug: chromium:862144
> > > > Change-Id: I0eecbe0bc48123619f217e2cf318eb9a8c77ccb2
> > > > Reviewed-on: https://skia-review.googlesource.com/158661
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,cblume@chromium.org
> > >
> > > Change-Id: I76ae6f435333755fa5d546fc1e5999a324b4fd05
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Bug: chromium:862144
> > > Reviewed-on: https://skia-review.googlesource.com/c/159000
> > > Reviewed-by: Mike Klein <mtklein@google.com>
> > > Commit-Queue: Mike Klein <mtklein@google.com>
> >
> > TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
> >
> > Change-Id: Id019b428f880efbd7ead8dee4178c6190469a290
> > No-Presubmit: true
> > No-Tree-Checks: true
> > No-Try: true
> > Bug: chromium:862144
> > Reviewed-on: https://skia-review.googlesource.com/c/159145
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
>
> Change-Id: I0e5c72e2d79dac28021b02168a9e11ac08db765c
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: chromium:862144
> Reviewed-on: https://skia-review.googlesource.com/c/159155
> Reviewed-by: Mike Klein <mtklein@google.com>
> Commit-Queue: Mike Klein <mtklein@google.com>
TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
Change-Id: I58f7f8ca5281cd5fe0c145c01e9b9465c9b9ec31
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: chromium:862144
Reviewed-on: https://skia-review.googlesource.com/159260
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2018-10-03 18:44:49 +00:00
|
|
|
#else
|
|
|
|
fIsInitialized = false;
|
2018-10-03 16:34:11 +00:00
|
|
|
#endif
|
Reland "Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN.""
This reverts commit a55e214bbe3942a098d97906a0f008d59dd1fafb.
Reason for revert:google3 should be fixed now
Original change's description:
> Revert "Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN.""
>
> This reverts commit 55aea84baa53f2d7e7e876b09fd590f046ff9ab9.
>
> Reason for revert: Google3 roll failing like
>
> third_party/skia/HEAD/include/gpu/vk/GrVkDefines.h:15:10: fatal error: '../../../third_party/vulkan/SkiaVulkan.h' file not found
> #include "../../../third_party/vulkan/SkiaVulkan.h"
>
>
> Original change's description:
> > Reland "Always include public/include headers for vulkan and just guard src files with SK_VULKAN."
> >
> > This reverts commit 684b506f3589ecc78eebe8d92082be31a5fbe348.
> >
> > Reason for revert: Chrome change has landed to fix broken chrome roll.
> >
> > Original change's description:
> > > Revert "Always include public/include headers for vulkan and just guard src files with SK_VULKAN."
> > >
> > > This reverts commit 6e2d607334cc57c22e3a52179743763828ea84b2.
> > >
> > > Reason for revert: chrome roll
> > >
> > > Original change's description:
> > > > Always include public/include headers for vulkan and just guard src files with SK_VULKAN.
> > > >
> > > > This should allow a client to build a skia library that doesn't use vulkan but still
> > > > has all the public headers defined so that they don't have to build two versions of
> > > > their code.
> > > >
> > > > Bug: chromium:862144
> > > > Change-Id: I0eecbe0bc48123619f217e2cf318eb9a8c77ccb2
> > > > Reviewed-on: https://skia-review.googlesource.com/158661
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,cblume@chromium.org
> > >
> > > Change-Id: I76ae6f435333755fa5d546fc1e5999a324b4fd05
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Bug: chromium:862144
> > > Reviewed-on: https://skia-review.googlesource.com/c/159000
> > > Reviewed-by: Mike Klein <mtklein@google.com>
> > > Commit-Queue: Mike Klein <mtklein@google.com>
> >
> > TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
> >
> > Change-Id: Id019b428f880efbd7ead8dee4178c6190469a290
> > No-Presubmit: true
> > No-Tree-Checks: true
> > No-Try: true
> > Bug: chromium:862144
> > Reviewed-on: https://skia-review.googlesource.com/c/159145
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > Reviewed-by: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
>
> Change-Id: I0e5c72e2d79dac28021b02168a9e11ac08db765c
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: chromium:862144
> Reviewed-on: https://skia-review.googlesource.com/c/159155
> Reviewed-by: Mike Klein <mtklein@google.com>
> Commit-Queue: Mike Klein <mtklein@google.com>
TBR=egdaniel@google.com,mtklein@google.com,bsalomon@google.com,cblume@chromium.org
Change-Id: I58f7f8ca5281cd5fe0c145c01e9b9465c9b9ec31
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: chromium:862144
Reviewed-on: https://skia-review.googlesource.com/159260
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2018-10-03 18:44:49 +00:00
|
|
|
}
|
2017-06-16 13:45:32 +00:00
|
|
|
|
2019-08-28 18:35:55 +00:00
|
|
|
// It is the creator's responsibility to ref the MTLEvent passed in here, via __bridge_retained.
|
|
|
|
// The other end will wrap this BackendSemaphore and take the ref, via __bridge_transfer.
|
|
|
|
void initMetal(GrMTLHandle event, uint64_t value) {
|
|
|
|
fBackend = GrBackendApi::kMetal;
|
|
|
|
fMtlEvent = event;
|
|
|
|
fMtlValue = value;
|
|
|
|
#ifdef SK_METAL
|
|
|
|
fIsInitialized = true;
|
|
|
|
#else
|
|
|
|
fIsInitialized = false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-06-25 17:10:29 +00:00
|
|
|
#ifdef SK_DIRECT3D
|
|
|
|
void initDirect3D(const GrD3DFenceInfo& info) {
|
|
|
|
fBackend = GrBackendApi::kDirect3D;
|
|
|
|
this->assignD3DFenceInfo(info);
|
|
|
|
fIsInitialized = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-07-20 20:36:01 +00:00
|
|
|
bool isInitialized() const { return fIsInitialized; }
|
|
|
|
|
2017-06-16 13:45:32 +00:00
|
|
|
GrGLsync glSync() const {
|
2018-10-12 13:31:11 +00:00
|
|
|
if (!fIsInitialized || GrBackendApi::kOpenGL != fBackend) {
|
2017-06-16 13:45:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return fGLSync;
|
|
|
|
}
|
|
|
|
|
|
|
|
VkSemaphore vkSemaphore() const {
|
2018-10-12 13:31:11 +00:00
|
|
|
if (!fIsInitialized || GrBackendApi::kVulkan != fBackend) {
|
2017-06-16 13:45:32 +00:00
|
|
|
return VK_NULL_HANDLE;
|
|
|
|
}
|
|
|
|
return fVkSemaphore;
|
|
|
|
}
|
|
|
|
|
2019-08-28 18:35:55 +00:00
|
|
|
GrMTLHandle mtlSemaphore() const {
|
|
|
|
if (!fIsInitialized || GrBackendApi::kMetal != fBackend) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return fMtlEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t mtlValue() const {
|
|
|
|
if (!fIsInitialized || GrBackendApi::kMetal != fBackend) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return fMtlValue;
|
|
|
|
}
|
|
|
|
|
2020-06-25 17:10:29 +00:00
|
|
|
#ifdef SK_DIRECT3D
|
|
|
|
bool getD3DFenceInfo(GrD3DFenceInfo* outInfo) const;
|
|
|
|
#endif
|
|
|
|
|
2017-06-16 13:45:32 +00:00
|
|
|
private:
|
2020-06-25 17:10:29 +00:00
|
|
|
#ifdef SK_DIRECT3D
|
|
|
|
void assignD3DFenceInfo(const GrD3DFenceInfo& info);
|
|
|
|
#endif
|
|
|
|
|
2018-10-12 13:31:11 +00:00
|
|
|
GrBackendApi fBackend;
|
2017-06-16 13:45:32 +00:00
|
|
|
union {
|
|
|
|
GrGLsync fGLSync;
|
|
|
|
VkSemaphore fVkSemaphore;
|
2019-08-28 18:35:55 +00:00
|
|
|
GrMTLHandle fMtlEvent; // Expected to be an id<MTLEvent>
|
2020-06-25 17:10:29 +00:00
|
|
|
#ifdef SK_DIRECT3D
|
|
|
|
GrD3DFenceInfo* fD3DFenceInfo;
|
|
|
|
#endif
|
2017-06-16 13:45:32 +00:00
|
|
|
};
|
2019-08-28 18:35:55 +00:00
|
|
|
uint64_t fMtlValue;
|
2017-06-16 13:45:32 +00:00
|
|
|
bool fIsInitialized;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|