( self )
| 52 | self.assertTrue( isinstance( t, IECoreGL.ColorTexture ) ) |
| 53 | |
| 54 | def testLoadGreyscale( self ) : |
| 55 | |
| 56 | l = IECoreGL.TextureLoader( IECore.SearchPath( "." + os.path.sep ) ) |
| 57 | t = l.load( os.path.join( "test", "IECoreImage", "data", "jpg", "greyscaleCheckerBoard.jpg" ) ) |
| 58 | self.assertTrue( isinstance( t, IECoreGL.LuminanceTexture ) ) |
| 59 | |
| 60 | def testMaximumTextureResolution( self ) : |
| 61 |
nothing calls this directly
no test coverage detected