Bug 753854 - -[NSOpenGLPixelFormat initWithAttributes] should be passed a 0 terminated array. [r=joe]

This commit is contained in:
Paul O’Shannessy 2012-05-10 12:56:42 -07:00
Родитель 18891dc7c0
Коммит 4f5be99420
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -90,11 +90,11 @@ public:
NSOpenGLPFAAccelerated,
NSOpenGLPFAAllowOfflineRenderers,
NSOpenGLPFADoubleBuffer,
(NSOpenGLPixelFormatAttribute)nil
0
};
if (!gUseDoubleBufferedWindows) {
attribs[2] = (NSOpenGLPixelFormatAttribute)nil;
attribs[2] = 0;
}
mPixelFormat = [[NSOpenGLPixelFormat alloc] initWithAttributes:attribs];