mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-22 16:25:39 +00:00
13 lines
382 B
C++
13 lines
382 B
C++
// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com>
|
|
// 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
|