mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
17 lines
272 B
Plaintext
17 lines
272 B
Plaintext
#include "osx_utils.h"
|
|
|
|
#import <AppKit/NSWindow.h>
|
|
|
|
namespace OEngine {
|
|
namespace Render {
|
|
|
|
unsigned long WindowContentViewHandle(SDL_SysWMinfo &info)
|
|
{
|
|
NSWindow *window = info.info.cocoa.window;
|
|
NSView *view = [window contentView];
|
|
return (unsigned long)view;
|
|
}
|
|
|
|
}
|
|
}
|