@@ -51,8 +51,6 @@ declare module PIXI {
5151 export var glContexts : WebGLRenderingContext [ ] ;
5252 export var instances : any [ ] ;
5353
54- export var BaseTextureCache : { [ key : string ] : BaseTexture } ;
55- export var TextureCache : { [ key : string ] : Texture } ;
5654 export var TextureSilentFail : boolean ;
5755 export var BitmapText : { fonts : { } } ;
5856
@@ -254,7 +252,6 @@ declare module PIXI {
254252
255253 export class BaseTexture implements Mixin {
256254
257- static fromImage ( imageUrl : string , crossorigin ?: boolean , scaleMode ?: scaleModes ) : BaseTexture ;
258255 static fromCanvas ( canvas : HTMLCanvasElement , scaleMode ?: scaleModes ) : BaseTexture ;
259256
260257 constructor ( source : HTMLImageElement , scaleMode : scaleModes ) ;
@@ -281,7 +278,6 @@ declare module PIXI {
281278 forceLoaded ( width : number , height : number ) : void ;
282279 destroy ( ) : void ;
283280 dirty ( ) : void ;
284- updateSourceImage ( newSrc : string ) : void ;
285281 unloadFromGPU ( ) : void ;
286282
287283 }
@@ -768,28 +764,6 @@ declare module PIXI {
768764
769765 }
770766
771- export class MovieClip extends Sprite {
772-
773- static fromFrames ( frames : string [ ] ) : MovieClip ;
774- static fromImages ( images : HTMLImageElement [ ] ) : HTMLImageElement ;
775-
776- constructor ( textures : Texture [ ] ) ;
777-
778- animationSpeed : number ;
779- currentFrame : number ;
780- loop : boolean ;
781- playing : boolean ;
782- textures : Texture [ ] ;
783- totalFrames : number ;
784-
785- gotoAndPlay ( frameNumber : number ) : void ;
786- gotoAndStop ( frameNumber : number ) : void ;
787- onComplete ( ) : void ;
788- play ( ) : void ;
789- stop ( ) : void ;
790-
791- }
792-
793767 export class NoiseFilter extends AbstractFilter {
794768
795769 noise : number ;
@@ -1018,9 +992,6 @@ declare module PIXI {
1018992
1019993 export class Sprite extends DisplayObjectContainer {
1020994
1021- static fromFrame ( frameId : string ) : Sprite ;
1022- static fromImage ( url : string , crossorigin ?: boolean , scaleMode ?: scaleModes ) : Sprite ;
1023-
1024995 constructor ( texture : Texture ) ;
1025996
1026997 anchor : Point ;
@@ -1097,10 +1068,6 @@ declare module PIXI {
10971068 static emptyTexture : Texture ;
10981069
10991070 static fromCanvas ( canvas : HTMLCanvasElement , scaleMode ?: scaleModes ) : Texture ;
1100- static fromFrame ( frameId : string ) : Texture ;
1101- static fromImage ( imageUrl : string , crossorigin ?: boolean , scaleMode ?: scaleModes ) : Texture ;
1102- static addTextureToCache ( texture : Texture , id : string ) : void ;
1103- static removeTextureFromCache ( id : string ) : Texture ;
11041071
11051072 constructor ( baseTexture : BaseTexture , frame ?: Rectangle , crop ?: Rectangle , trim ?: Rectangle ) ;
11061073
0 commit comments