Home
last modified time | relevance | path

Searched refs:VulkanBackendSemaphoreData (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/skia/src/gpu/graphite/vk/
H A DVulkanBackendSemaphore.cpp16 class VulkanBackendSemaphoreData final : public BackendSemaphoreData { class
18 VulkanBackendSemaphoreData(VkSemaphore sem) : fVkSemaphore(sem) {} in VulkanBackendSemaphoreData() function in skgpu::graphite::VulkanBackendSemaphoreData
32 dstData.emplace<VulkanBackendSemaphoreData>(fVkSemaphore); in copyTo()
36 static const VulkanBackendSemaphoreData* get_and_cast_data(const BackendSemaphore& sem) { in get_and_cast_data()
39 return static_cast<const VulkanBackendSemaphoreData*>(data); in get_and_cast_data()
44 return BackendSemaphorePriv::Make(skgpu::BackendApi::kVulkan, VulkanBackendSemaphoreData(sem)); in MakeVulkan()
51 const VulkanBackendSemaphoreData* vkData = get_and_cast_data(sem); in GetVkSemaphore()