Fixed AppKit not initialized for cursor creation.

This commit is contained in:
Camilla Berglund 2015-07-21 17:22:14 +02:00
parent 33c7c28dde
commit e686f5a249
1 changed files with 6 additions and 0 deletions

View File

@ -1189,6 +1189,9 @@ int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
NSImage* native;
NSBitmapImageRep* rep;
if (!initializeAppKit())
return GL_FALSE;
rep = [[NSBitmapImageRep alloc]
initWithBitmapDataPlanes:NULL
pixelsWide:image->width
@ -1224,6 +1227,9 @@ int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
int _glfwPlatformCreateStandardCursor(_GLFWcursor* cursor, int shape)
{
if (!initializeAppKit())
return GL_FALSE;
cursor->ns.object = getStandardCursor(shape);
if (!cursor->ns.object)
{