MaterialX 1.38.10
Loading...
Searching...
No Matches
WindowCocoaWrappers.h
1//
2// Copyright Contributors to the MaterialX Project
3// SPDX-License-Identifier: Apache-2.0
4//
5
6#ifndef MATERIALX_WINDOWCOCOAWRAPPERS_H
7#define MATERIALX_WINDOWCOCOAWRAPPERS_H
8
9#if defined(__APPLE__)
10
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16void* NSUtilGetView(void* pWindow);
17void* NSUtilCreateWindow(unsigned int width, unsigned int height, const char* title, bool batchMode);
18void NSUtilShowWindow(void* pWindow);
19void NSUtilHideWindow(void* pWindow);
20void NSUtilSetFocus(void* pWindow);
21void NSUtilDisposeWindow(void* pWindow);
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif
28
29#endif