Fix T45632: motion blur (2d filter) not working - in OSX at least

This regression was introduced in Blende 2.73a when we went through a
ghost context refactoring :(
This commit is contained in:
Dalai Felinto 2015-07-31 16:27:00 -03:00
parent 03f00eb91d
commit 527ee3f1f1
Notes: blender-bot 2023-02-14 11:25:11 +01:00
Referenced by issue #45632, motion blur (2d filter) not working
1 changed files with 3 additions and 0 deletions

View File

@ -205,6 +205,9 @@ static void makeAttribList(
attribs.push_back(NSOpenGLPFADepthSize);
attribs.push_back((NSOpenGLPixelFormatAttribute) 32);
attribs.push_back(NSOpenGLPFAAccumSize);
attribs.push_back((NSOpenGLPixelFormatAttribute) 32);
if (stereoVisual)
attribs.push_back(NSOpenGLPFAStereo);