Commit 484cf761 authored by Ken Thomases's avatar Ken Thomases Committed by Alexandre Julliard

winemac: Use kCGLPFANoRecovery for accelerated pixel formats in create_context().

parent cf2ce8c6
......@@ -2991,7 +2991,10 @@ static BOOL create_context(struct wgl_context *context, CGLContextObj share)
attribs[n++] = kCGLPFAClosestPolicy;
if (pf->accelerated)
{
attribs[n++] = kCGLPFAAccelerated;
attribs[n++] = kCGLPFANoRecovery;
}
else
{
attribs[n++] = kCGLPFARendererID;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment