ERROR : BackgroundTask : IObject::getPropertiesHash()ERROR: EXCEPTION:Ogawa IStreams::read failed.C:\Users\Gebruiker\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin>python C:\Users\Gebruiker\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\../bin/gaffer.pyTraceback (most recent call last): File "C:\Users\Gebruiker\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\python\IECore\curry.py", line 48, in curriedFunction return func( *args, **kwds ) File "C:\Users\Gebruiker\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\python\Gaffer\WeakMethod.py", line 67, in __call__ return m( *args, **kwArgs ) File "C:\Users\Gebruiker\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\python\GafferUI\Menu.py", line 183, in __actionTriggered item.command( *args, **kw ) File "C:\Users\Gebruiker\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\python\GafferUI\ShowURL.py", line 58, in showURL QtGui.QDesktopServices.openUrl( QtCore.QUrl( url, QtCore.QUrl.TolerantMode ) )AttributeError: 'module' object has no attribute 'QDesktopServices'I gave those Alembic files another go at the office and I was unable to reproduce the problem I had at the time. I guess I might have just mistyped the filepath that one time or something alike, as that does seem to sometimes give me the flickering behavior (as if it's keeping the original path in its cache somewhere).So I guess at this stage the Alembic files work as expected in both formats.
--
You received this message because you are subscribed to the Google Groups "gaffer-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gaffer-dev+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.




C:\Users\Render02>python C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\../bin/gaffer.py
Traceback (most recent call last):
File "C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\../bin/gaffer.py", line 162, in <module>
app = loadApp( appName )
File "C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\../bin/gaffer.py", line 71, in loadApp
return appLoader.load( appName )()
File "C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\python\IECore\ClassLoader.py", line 161, in load
module = imp.load_module( "IECoreClassLoader" + name.replace( ".", "_" ) + str( version ), fileForLoad, fileName, ( ".py", "r", imp.PY_SOURCE ) )
File "C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\..\apps\gui\gui-1.py", line 45, in <module>
import GafferUI
File "C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\python\GafferUI\__init__.py", line 147, in <module>
from _GafferUI import *
ImportError: DLL load failed: The specified procedure was not found.
C:\Users\eric\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts(1)\bin>python
Python 2.7.15 (default, Nov 15 2018, 11:35:43) [MSC v.1913 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.import sys
import platform
print sys.executable
print platform.architecture()
print sys.maxsizeC:\Users\eric\Downloads\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts(1)\bin\python.exe
('64bit', 'WindowsPE')
9223372036854775807import Gaffer
import GafferUIC:\Users\Render02>Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\python
Python 2.7.15 (default, Nov 15 2018, 11:35:43) [MSC v.1913 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print sys.executable
C:\Users\Render02\Desktop\Gaffer_Windows_Gaffer_0.52.0.0.283_artifacts\bin\python.exe
>>> print platform.architecture()
('64bit', 'WindowsPE')
>>> print sys.maxsize
9223372036854775807
>>> import Gaffer
>>> import GafferUI
Traceback (most recent call last):
File "<stdin>", line 1, in <module>Here's a large size that is legible.
Also, for anyone else... my laptop has 2 GPUs - an integrated Intel one and a dedicated Nvidia GT 750m. On the first one I got a bunch of GL errors that were also mentioned here. Going into Nvidia configuration panel and forcing the dedicated GPU for python.exe made it work. Going from the other thread it's a known issue with integrated Intel GPUs.
--