// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin // SPDX-License-Identifier: PolyForm-Strict-1.0.0 struct WindowInfo; namespace CocoaTools { /// Creates metal layer on specified window surface. bool CreateMetalLayer(WindowInfo* wi); /// Destroys metal layer on specified window surface. void DestroyMetalLayer(WindowInfo* wi); } // namespace CocoaTools