We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 886ca7e commit e5bb273Copy full SHA for e5bb273
2 files changed
src/easeljs/display/StageGL.js
@@ -1172,7 +1172,7 @@ this.createjs = this.createjs||{};
1172
1173
"hue": {
1174
shader: (StageGL.BLEND_FRAGMENT_HSL_UTIL + StageGL.BLEND_FRAGMENT_COMPLEX +
1175
- "setLum(setSat(srcClr, getSat(dstClr)), getLum(dstClr))"
+ "setLum(setSat(srcClr, getSat(dstClr)), getLum(dstClr))"
1176
+ StageGL.BLEND_FRAGMENT_COMPLEX_CAP)
1177
},
1178
"saturation": {
src/easeljs/filters/BitmapCache.js
@@ -546,8 +546,8 @@ this.createjs = this.createjs||{};
546
p.getBounds = function() {
547
var scale = this.scale;
548
return this._boundRect.setValues(
549
- this._filterOffX/scale, this._filterOffY/scale,
550
- this.width/scale, this.height/scale
+ this.x, this.y,
+ this.width/scale, this.height/scale
551
);
552
};
553
0 commit comments