1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 03:15:32 +00:00
openmw-tes3mp/libs/openengine/ogre/osx_utils.mm

17 lines
272 B
Text
Raw Normal View History

#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;
}
}
}