Skip to content
Snippets Groups Projects
Commit 8deb576c authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Well. I decided that a multi-context setup was causing too many problems

in a normal (non-VM) rendering envirnoment. So it is now only enabled
for Apple/Software renderer environments.
parent 075583e0
No related branches found
No related tags found
No related merge requests found
...@@ -190,6 +190,7 @@ package also contains the following: ...@@ -190,6 +190,7 @@ package also contains the following:
import logging import logging
import os import os
import platform
import fsl.utils.platform as fslplatform import fsl.utils.platform as fslplatform
...@@ -617,7 +618,7 @@ class WXGLCanvasTarget(object): ...@@ -617,7 +618,7 @@ class WXGLCanvasTarget(object):
def __init__(self): def __init__(self):
"""Create a ``WXGLCanasTarget``. """Create a ``WXGLCanvasTarget``.
Binds :attr:`wx.EVT_PAINT` events to the :meth:`_mainDraw` method. Binds :attr:`wx.EVT_PAINT` events to the :meth:`_mainDraw` method.
""" """
...@@ -627,7 +628,23 @@ class WXGLCanvasTarget(object): ...@@ -627,7 +628,23 @@ class WXGLCanvasTarget(object):
self._glReady = False self._glReady = False
self.__context = wxgl.GLContext(self, other=getWXGLContext()[0]) context = getWXGLContext()[0]
# If we are on OSX, and using the Apple Software
# Renderer (e.g. in a virtual machine), then it
# seems that we have to have a separate context
# for each display. If we don't, then strange
# refresh problems will occur.
if platform.system() == 'Darwin' and \
'software' in fslplatform.glRenderer.lower():
log.debug('Creating separate GL context for '
'WXGLCanvasTarget {}'.format(id(self)))
context = wxgl.GLContext(self, other=context)
self.__context = context
self.Bind(wx.EVT_PAINT, self._mainDraw) self.Bind(wx.EVT_PAINT, self._mainDraw)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment