Pixastic rewrite - initial commit

This commit is contained in:
Jacob Seidelin 2013-02-19 11:12:26 +01:00
parent 643bc247eb
commit 0a41a80bcc
13 changed files with 2898 additions and 0 deletions

View file

@ -0,0 +1,13 @@
importScripts("pixastic.js");
importScripts("pixastic.effects.js");
var worker = new Pixastic.Worker();
worker.onmessage = function(message) {
postMessage(message.data);
}
onmessage = function(message) {
worker.postMessage(message.data);
}