1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/*
* Copyright 2023 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
*/
#ifndef GrVkBackendSemaphore_DEFINED
#define GrVkBackendSemaphore_DEFINED
#include "include/gpu/ganesh/GrBackendSemaphore.h"
#include "include/private/base/SkAPI.h"
#include "include/private/gpu/vk/SkiaVulkan.h"
namespace GrBackendSemaphores {
SK_API GrBackendSemaphore MakeVk(VkSemaphore semaphore);
SK_API VkSemaphore GetVkSemaphore(const GrBackendSemaphore&);
} // namespace GrBackendSemaphores
#endif
|