File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ export class Paint extends ProxyClass {
9191 // public getFontSpacing(): number;
9292 public setXfermode ( param0 : PorterDuffXfermode ) : PorterDuffXfermode ;
9393 public getXfermode ( ) : PorterDuffXfermode ;
94+ public getColorFilter ( ) : ColorFilter ;
9495 public setColorFilter ( param0 : ColorFilter ) : void ;
9596}
9697
Original file line number Diff line number Diff line change @@ -1046,9 +1046,6 @@ export class Paint implements IPaint {
10461046 public getStrokeJoin ( ) : Join {
10471047 return this . strokeJoin ;
10481048 }
1049- public getColorFilter ( ) {
1050- return this . colorFilter ;
1051- }
10521049 public setStrokeWidth ( value : number ) : void {
10531050 this . strokeWidth = value ;
10541051 }
@@ -1089,6 +1086,9 @@ export class Paint implements IPaint {
10891086 public getShader ( ) {
10901087 return this . shader as any as IShader ;
10911088 }
1089+ public getColorFilter ( ) {
1090+ return this . colorFilter ;
1091+ }
10921092 public setColorFilter ( value : any ) {
10931093 if ( this . colorFilter ) {
10941094 this . colorFilter . release ( ) ;
You can’t perform that action at this time.
0 commit comments