Preparing node-version

This commit is contained in:
Christoph Oberhofer
2015-09-14 00:08:47 +02:00
parent ed39bd10ce
commit 3bd8e66ccf
5 changed files with 12 additions and 21 deletions
-10
View File
@@ -2597,16 +2597,6 @@ define('rasterizer',["tracer"], function(Tracer) {
define('skeletonizer',[],function() {
"use strict";
Math.imul = Math.imul || function(a, b) {
var ah = (a >>> 16) & 0xffff;
var al = a & 0xffff;
var bh = (b >>> 16) & 0xffff;
var bl = b & 0xffff;
// the shift by 0 fixes the sign on the high part
// the final |0 converts the unsigned value into a signed value
return ((al * bl) + (((ah * bl + al * bh) << 16) >>> 0)|0);
};
/* @preserve ASM BEGIN */
function Skeletonizer(stdlib, foreign, buffer) {
"use asm";
+3 -3
View File
File diff suppressed because one or more lines are too long