Skip to content

Commit

Permalink
Fixed ColorMatrix
Browse files Browse the repository at this point in the history
as described in nickalie#26
  • Loading branch information
dagnelies committed Sep 7, 2015
1 parent 0664c4a commit d75eea4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions createjs/easeljs/ColorMatrix.hx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package createjs.easeljs;

@:native("createjs.ColorMatrix")
extern class ColorMatrix extends Array{
extern class ColorMatrix {

public function new(brightness:Float, contrast:Float, saturation:Float, hue:Float):Void;
public function adjustBrightness(value:Float):ColorMatrix;
Expand All @@ -13,8 +13,8 @@ extern class ColorMatrix extends Array{
public function concat(matrix:Array):ColorMatrix;
public function copyMatrix(matrix:Array):ColorMatrix;
public function reset():ColorMatrix;
public function toArray():Array;
public function toArray():Array<Dynamic>;

public static var DELTA_INDEX:Array<Float>;
public static var IDENTITY_MATRIX:Array<Int>;
}
}

0 comments on commit d75eea4

Please sign in to comment.