From d1b9ab563f9fdfe5b481b4584a54b408305b3432 Mon Sep 17 00:00:00 2001 From: Jacob Seidelin Date: Thu, 4 Sep 2014 11:17:28 +0200 Subject: [PATCH] fix convolve5x5 to not call convolve3x3 --- pixastic.effects.js | 2 +- pixastic.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pixastic.effects.js b/pixastic.effects.js index dd9f62b..c8fb50f 100644 --- a/pixastic.effects.js +++ b/pixastic.effects.js @@ -618,7 +618,7 @@ Pixastic.Effects = (function() { }, convolve5x5 : function(inData, outData, width, height, options, progress) { - convolve3x3(inData, outData, width, height, options.kernel, progress); + convolve5x5(inData, outData, width, height, options.kernel, progress); }, // A 3x3 high-pass filter diff --git a/pixastic.js b/pixastic.js index 67eecaf..297309b 100644 --- a/pixastic.js +++ b/pixastic.js @@ -34,9 +34,9 @@ worker = new window.Worker("pixastic.worker.control.js"); } catch(e) { if (location.protocol == "file:") { - Pixastic.log("Could not create real worker, running from file://") + Pixastic.log("Could not create native worker, running from file://") } else { - Pixastic.log("Could not create real worker.") + Pixastic.log("Could not create native worker.") } } }