Swapped imgB and imgA back
This swap makes Blur actually work - otherwise it does not display at all.
This commit is contained in:
committed by
Joshua Granick
parent
37b2eb014b
commit
4735ed6c03
@@ -756,8 +756,8 @@ class ImageDataUtil {
|
||||
boxBlurT(imgA, imgB, w, h, Std.int(by), 3);
|
||||
}
|
||||
|
||||
var imgB = sourceImage.data;
|
||||
var imgA = image.data;
|
||||
var imgB = image.data;
|
||||
var imgA = sourceImage.data;
|
||||
var w = Std.int (sourceRect.width);
|
||||
var h = Std.int (sourceRect.height);
|
||||
var bx = Std.int (blurX);
|
||||
|
||||
Reference in New Issue
Block a user