( self )
| 46 | IECoreGL.init( False ) |
| 47 | |
| 48 | def testLoadRGB( self ) : |
| 49 | |
| 50 | l = IECoreGL.TextureLoader( IECore.SearchPath( "." + os.path.sep ) ) |
| 51 | t = l.load( os.path.join( "test", "IECoreImage", "data", "exr", "carPark.exr" ) ) |
| 52 | self.assertTrue( isinstance( t, IECoreGL.ColorTexture ) ) |
| 53 | |
| 54 | def testLoadGreyscale( self ) : |
| 55 |
nothing calls this directly
no test coverage detected