/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "include/gpu/graphite/BackendSemaphore.h" #include "src/gpu/graphite/BackendSemaphorePriv.h" namespace skgpu::graphite { BackendSemaphore::BackendSemaphore() = default; BackendSemaphore::~BackendSemaphore() = default; BackendSemaphore::BackendSemaphore(const BackendSemaphore& that) { … } BackendSemaphore& BackendSemaphore::operator=(const BackendSemaphore& that) { … } BackendSemaphoreData::~BackendSemaphoreData(){}; } // End of namespace skgpu::graphite