mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-12-04 19:45:41 +00:00
13 lines
389 B
C++
13 lines
389 B
C++
// SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.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
|