Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 1 | // Adds JS functions to augment the CanvasKit interface. |
| 2 | // For example, if there is a wrapper around the C++ call or logic to allow |
| 3 | // chaining, it should go here. |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 4 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 5 | // CanvasKit.onRuntimeInitialized is called after the WASM library has loaded. |
| 6 | // Anything that modifies an exposed class (e.g. SkPath) should be set |
| 7 | // after onRuntimeInitialized, otherwise, it can happen outside of that scope. |
| 8 | CanvasKit.onRuntimeInitialized = function() { |
| 9 | // All calls to 'this' need to go in externs.js so closure doesn't minify them away. |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 10 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 11 | // Add some helpers for matrices. This is ported from SkMatrix.cpp |
| 12 | // to save complexity and overhead of going back and forth between |
| 13 | // C++ and JS layers. |
| 14 | // I would have liked to use something like DOMMatrix, except it |
| 15 | // isn't widely supported (would need polyfills) and it doesn't |
| 16 | // have a mapPoints() function (which could maybe be tacked on here). |
| 17 | // If DOMMatrix catches on, it would be worth re-considering this usage. |
| 18 | CanvasKit.SkMatrix = {}; |
| 19 | function sdot(a, b, c, d, e, f) { |
| 20 | e = e || 0; |
| 21 | f = f || 0; |
| 22 | return a * b + c * d + e * f; |
| 23 | } |
| 24 | |
| 25 | CanvasKit.SkMatrix.identity = function() { |
| 26 | return [ |
| 27 | 1, 0, 0, |
| 28 | 0, 1, 0, |
| 29 | 0, 0, 1, |
| 30 | ]; |
| 31 | }; |
| 32 | |
| 33 | // Return the inverse (if it exists) of this matrix. |
| 34 | // Otherwise, return the identity. |
| 35 | CanvasKit.SkMatrix.invert = function(m) { |
| 36 | var det = m[0]*m[4]*m[8] + m[1]*m[5]*m[6] + m[2]*m[3]*m[7] |
| 37 | - m[2]*m[4]*m[6] - m[1]*m[3]*m[8] - m[0]*m[5]*m[7]; |
| 38 | if (!det) { |
| 39 | SkDebug('Warning, uninvertible matrix'); |
| 40 | return CanvasKit.SkMatrix.identity(); |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 41 | } |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 42 | return [ |
| 43 | (m[4]*m[8] - m[5]*m[7])/det, (m[2]*m[7] - m[1]*m[8])/det, (m[1]*m[5] - m[2]*m[4])/det, |
| 44 | (m[5]*m[6] - m[3]*m[8])/det, (m[0]*m[8] - m[2]*m[6])/det, (m[2]*m[3] - m[0]*m[5])/det, |
| 45 | (m[3]*m[7] - m[4]*m[6])/det, (m[1]*m[6] - m[0]*m[7])/det, (m[0]*m[4] - m[1]*m[3])/det, |
| 46 | ]; |
| 47 | }; |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 48 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 49 | // Maps the given points according to the passed in matrix. |
| 50 | // Results are done in place. |
| 51 | // See SkMatrix.h::mapPoints for the docs on the math. |
| 52 | CanvasKit.SkMatrix.mapPoints = function(matrix, ptArr) { |
| 53 | if (ptArr.length % 2) { |
| 54 | throw 'mapPoints requires an even length arr'; |
Kevin Lubick | b9db390 | 2018-11-26 11:47:54 -0500 | [diff] [blame] | 55 | } |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 56 | for (var i = 0; i < ptArr.length; i+=2) { |
| 57 | var x = ptArr[i], y = ptArr[i+1]; |
| 58 | // Gx+Hy+I |
| 59 | var denom = matrix[6]*x + matrix[7]*y + matrix[8]; |
| 60 | // Ax+By+C |
| 61 | var xTrans = matrix[0]*x + matrix[1]*y + matrix[2]; |
| 62 | // Dx+Ey+F |
| 63 | var yTrans = matrix[3]*x + matrix[4]*y + matrix[5]; |
| 64 | ptArr[i] = xTrans/denom; |
| 65 | ptArr[i+1] = yTrans/denom; |
| 66 | } |
| 67 | return ptArr; |
| 68 | }; |
Kevin Lubick | b9db390 | 2018-11-26 11:47:54 -0500 | [diff] [blame] | 69 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 70 | CanvasKit.SkMatrix.multiply = function(m1, m2) { |
| 71 | var result = [0,0,0, 0,0,0, 0,0,0]; |
| 72 | for (var r = 0; r < 3; r++) { |
| 73 | for (var c = 0; c < 3; c++) { |
| 74 | // m1 and m2 are 1D arrays pretending to be 2D arrays |
| 75 | result[3*r + c] = sdot(m1[3*r + 0], m2[3*0 + c], |
| 76 | m1[3*r + 1], m2[3*1 + c], |
| 77 | m1[3*r + 2], m2[3*2 + c]); |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 78 | } |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 79 | } |
| 80 | return result; |
| 81 | } |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 82 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 83 | // Return a matrix representing a rotation by n radians. |
| 84 | // px, py optionally say which point the rotation should be around |
| 85 | // with the default being (0, 0); |
| 86 | CanvasKit.SkMatrix.rotated = function(radians, px, py) { |
| 87 | px = px || 0; |
| 88 | py = py || 0; |
| 89 | var sinV = Math.sin(radians); |
| 90 | var cosV = Math.cos(radians); |
| 91 | return [ |
| 92 | cosV, -sinV, sdot( sinV, py, 1 - cosV, px), |
| 93 | sinV, cosV, sdot(-sinV, px, 1 - cosV, py), |
| 94 | 0, 0, 1, |
| 95 | ]; |
| 96 | }; |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 97 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 98 | CanvasKit.SkMatrix.scaled = function(sx, sy, px, py) { |
| 99 | px = px || 0; |
| 100 | py = py || 0; |
| 101 | return [ |
| 102 | sx, 0, px - sx * px, |
| 103 | 0, sy, py - sy * py, |
| 104 | 0, 0, 1, |
| 105 | ]; |
| 106 | }; |
Kevin Lubick | da3d8ac | 2019-01-07 11:08:55 -0500 | [diff] [blame] | 107 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 108 | CanvasKit.SkMatrix.skewed = function(kx, ky, px, py) { |
| 109 | px = px || 0; |
| 110 | py = py || 0; |
| 111 | return [ |
| 112 | 1, kx, -kx * px, |
| 113 | ky, 1, -ky * py, |
| 114 | 0, 0, 1, |
| 115 | ]; |
| 116 | }; |
Alexander Khovansky | 3e11933 | 2018-11-15 02:01:19 +0300 | [diff] [blame] | 117 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 118 | CanvasKit.SkMatrix.translated = function(dx, dy) { |
| 119 | return [ |
| 120 | 1, 0, dx, |
| 121 | 0, 1, dy, |
| 122 | 0, 0, 1, |
| 123 | ]; |
| 124 | }; |
Kevin Lubick | 1646e7d | 2018-12-07 13:03:08 -0500 | [diff] [blame] | 125 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 126 | CanvasKit.SkPath.prototype.addArc = function(oval, startAngle, sweepAngle) { |
| 127 | // see arc() for the HTMLCanvas version |
| 128 | // note input angles are degrees. |
| 129 | this._addArc(oval, startAngle, sweepAngle); |
| 130 | return this; |
| 131 | }; |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 132 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 133 | CanvasKit.SkPath.prototype.addPath = function() { |
| 134 | // Takes 1, 2, 7, or 10 required args, where the first arg is always the path. |
| 135 | // The last arg is optional and chooses between add or extend mode. |
| 136 | // The options for the remaining args are: |
| 137 | // - an array of 6 or 9 parameters (perspective is optional) |
| 138 | // - the 9 parameters of a full matrix or |
| 139 | // the 6 non-perspective params of a matrix. |
| 140 | var args = Array.prototype.slice.call(arguments); |
| 141 | var path = args[0]; |
| 142 | var extend = false; |
| 143 | if (typeof args[args.length-1] === "boolean") { |
| 144 | extend = args.pop(); |
| 145 | } |
| 146 | if (args.length === 1) { |
| 147 | // Add path, unchanged. Use identity matrix |
| 148 | this._addPath(path, 1, 0, 0, |
| 149 | 0, 1, 0, |
| 150 | 0, 0, 1, |
| 151 | extend); |
| 152 | } else if (args.length === 2) { |
| 153 | // User provided the 9 params of a full matrix as an array. |
| 154 | var a = args[1]; |
| 155 | this._addPath(path, a[0], a[1], a[2], |
| 156 | a[3], a[4], a[5], |
| 157 | a[6] || 0, a[7] || 0, a[8] || 1, |
| 158 | extend); |
| 159 | } else if (args.length === 7 || args.length === 10) { |
| 160 | // User provided the 9 params of a (full) matrix directly. |
| 161 | // (or just the 6 non perspective ones) |
| 162 | // These are in the same order as what Skia expects. |
| 163 | var a = args; |
| 164 | this._addPath(path, a[1], a[2], a[3], |
| 165 | a[4], a[5], a[6], |
| 166 | a[7] || 0, a[8] || 0, a[9] || 1, |
| 167 | extend); |
| 168 | } else { |
| 169 | SkDebug('addPath expected to take 1, 2, 7, or 10 required args. Got ' + args.length); |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 170 | return null; |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 171 | } |
| 172 | return this; |
| 173 | }; |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 174 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 175 | CanvasKit.SkPath.prototype.addRect = function() { |
| 176 | // Takes 1, 2, 4 or 5 args |
| 177 | // - SkRect |
| 178 | // - SkRect, isCCW |
| 179 | // - left, top, right, bottom |
| 180 | // - left, top, right, bottom, isCCW |
| 181 | if (arguments.length === 1 || arguments.length === 2) { |
| 182 | var r = arguments[0]; |
| 183 | var ccw = arguments[1] || false; |
| 184 | this._addRect(r.fLeft, r.fTop, r.fRight, r.fBottom, ccw); |
| 185 | } else if (arguments.length === 4 || arguments.length === 5) { |
| 186 | var a = arguments; |
| 187 | this._addRect(a[0], a[1], a[2], a[3], a[4] || false); |
| 188 | } else { |
| 189 | SkDebug('addRect expected to take 1, 2, 4, or 5 args. Got ' + arguments.length); |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 190 | return null; |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 191 | } |
| 192 | return this; |
| 193 | }; |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 194 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 195 | CanvasKit.SkPath.prototype.addRoundRect = function() { |
| 196 | // Takes 3, 4, 6 or 7 args |
| 197 | // - SkRect, radii, ccw |
| 198 | // - SkRect, rx, ry, ccw |
| 199 | // - left, top, right, bottom, radii, ccw |
| 200 | // - left, top, right, bottom, rx, ry, ccw |
| 201 | var args = arguments; |
| 202 | if (args.length === 3 || args.length === 6) { |
| 203 | var radii = args[args.length-2]; |
| 204 | } else if (args.length === 6 || args.length === 7){ |
| 205 | // duplicate the given (rx, ry) pairs for each corner. |
| 206 | var rx = args[args.length-3]; |
| 207 | var ry = args[args.length-2]; |
| 208 | var radii = [rx, ry, rx, ry, rx, ry, rx, ry]; |
| 209 | } else { |
| 210 | SkDebug('addRoundRect expected to take 3, 4, 6, or 7 args. Got ' + args.length); |
| 211 | return null; |
| 212 | } |
| 213 | if (radii.length !== 8) { |
| 214 | SkDebug('addRoundRect needs 8 radii provided. Got ' + radii.length); |
| 215 | return null; |
| 216 | } |
| 217 | var rptr = copy1dArray(radii, CanvasKit.HEAPF32); |
| 218 | if (args.length === 3 || args.length === 4) { |
| 219 | var r = args[0]; |
| 220 | var ccw = args[args.length - 1]; |
| 221 | this._addRoundRect(r.fLeft, r.fTop, r.fRight, r.fBottom, rptr, ccw); |
| 222 | } else if (args.length === 6 || args.length === 7) { |
| 223 | var a = args; |
| 224 | this._addRoundRect(a[0], a[1], a[2], a[3], rptr, ccw); |
| 225 | } |
| 226 | CanvasKit._free(rptr); |
| 227 | return this; |
| 228 | }; |
| 229 | |
| 230 | CanvasKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) { |
| 231 | // emulates the HTMLCanvas behavior. See addArc() for the SkPath version. |
| 232 | // Note input angles are radians. |
| 233 | var bounds = CanvasKit.LTRBRect(x-radius, y-radius, x+radius, y+radius); |
| 234 | var sweep = radiansToDegrees(endAngle - startAngle) - (360 * !!ccw); |
| 235 | var temp = new CanvasKit.SkPath(); |
| 236 | temp.addArc(bounds, radiansToDegrees(startAngle), sweep); |
| 237 | this.addPath(temp, true); |
| 238 | temp.delete(); |
| 239 | return this; |
| 240 | }; |
| 241 | |
| 242 | CanvasKit.SkPath.prototype.arcTo = function() { |
| 243 | // takes 4, 5 or 7 args |
| 244 | // - 5 x1, y1, x2, y2, radius |
| 245 | // - 4 oval (as Rect), startAngle, sweepAngle, forceMoveTo |
| 246 | // - 7 x1, y1, x2, y2, startAngle, sweepAngle, forceMoveTo |
| 247 | var args = arguments; |
| 248 | if (args.length === 5) { |
| 249 | this._arcTo(args[0], args[1], args[2], args[3], args[4]); |
| 250 | } else if (args.length === 4) { |
| 251 | this._arcTo(args[0], args[1], args[2], args[3]); |
| 252 | } else if (args.length === 7) { |
| 253 | this._arcTo(CanvasKit.LTRBRect(args[0], args[1], args[2], args[3]), |
| 254 | args[4], args[5], args[6]); |
| 255 | } else { |
| 256 | throw 'Invalid args for arcTo. Expected 4, 5, or 7, got '+ args.length; |
| 257 | } |
| 258 | |
| 259 | return this; |
| 260 | }; |
| 261 | |
| 262 | CanvasKit.SkPath.prototype.close = function() { |
| 263 | this._close(); |
| 264 | return this; |
| 265 | }; |
| 266 | |
| 267 | CanvasKit.SkPath.prototype.conicTo = function(x1, y1, x2, y2, w) { |
| 268 | this._conicTo(x1, y1, x2, y2, w); |
| 269 | return this; |
| 270 | }; |
| 271 | |
| 272 | CanvasKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { |
| 273 | this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y); |
| 274 | return this; |
| 275 | }; |
| 276 | |
| 277 | CanvasKit.SkPath.prototype.dash = function(on, off, phase) { |
| 278 | if (this._dash(on, off, phase)) { |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 279 | return this; |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 280 | } |
| 281 | return null; |
| 282 | }; |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 283 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 284 | CanvasKit.SkPath.prototype.lineTo = function(x, y) { |
| 285 | this._lineTo(x, y); |
| 286 | return this; |
| 287 | }; |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 288 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 289 | CanvasKit.SkPath.prototype.moveTo = function(x, y) { |
| 290 | this._moveTo(x, y); |
| 291 | return this; |
| 292 | }; |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 293 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 294 | CanvasKit.SkPath.prototype.op = function(otherPath, op) { |
| 295 | if (this._op(otherPath, op)) { |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 296 | return this; |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 297 | } |
| 298 | return null; |
| 299 | }; |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 300 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 301 | CanvasKit.SkPath.prototype.quadTo = function(cpx, cpy, x, y) { |
| 302 | this._quadTo(cpx, cpy, x, y); |
| 303 | return this; |
| 304 | }; |
| 305 | |
| 306 | CanvasKit.SkPath.prototype.simplify = function() { |
| 307 | if (this._simplify()) { |
| 308 | return this; |
| 309 | } |
| 310 | return null; |
| 311 | }; |
| 312 | |
| 313 | CanvasKit.SkPath.prototype.stroke = function(opts) { |
| 314 | // Fill out any missing values with the default values. |
| 315 | /** |
| 316 | * See externs.js for this definition |
| 317 | * @type {StrokeOpts} |
| 318 | */ |
| 319 | opts = opts || {}; |
| 320 | opts.width = opts.width || 1; |
| 321 | opts.miter_limit = opts.miter_limit || 4; |
| 322 | opts.cap = opts.cap || CanvasKit.StrokeCap.Butt; |
| 323 | opts.join = opts.join || CanvasKit.StrokeJoin.Miter; |
| 324 | opts.precision = opts.precision || 1; |
| 325 | if (this._stroke(opts)) { |
| 326 | return this; |
| 327 | } |
| 328 | return null; |
| 329 | }; |
| 330 | |
| 331 | CanvasKit.SkPath.prototype.transform = function() { |
| 332 | // Takes 1 or 9 args |
| 333 | if (arguments.length === 1) { |
| 334 | // argument 1 should be a 6 or 9 element array. |
| 335 | var a = arguments[0]; |
| 336 | this._transform(a[0], a[1], a[2], |
| 337 | a[3], a[4], a[5], |
| 338 | a[6] || 0, a[7] || 0, a[8] || 1); |
| 339 | } else if (arguments.length === 6 || arguments.length === 9) { |
| 340 | // these arguments are the 6 or 9 members of the matrix |
| 341 | var a = arguments; |
| 342 | this._transform(a[0], a[1], a[2], |
| 343 | a[3], a[4], a[5], |
| 344 | a[6] || 0, a[7] || 0, a[8] || 1); |
| 345 | } else { |
| 346 | throw 'transform expected to take 1 or 9 arguments. Got ' + arguments.length; |
| 347 | } |
| 348 | return this; |
| 349 | }; |
| 350 | // isComplement is optional, defaults to false |
| 351 | CanvasKit.SkPath.prototype.trim = function(startT, stopT, isComplement) { |
| 352 | if (this._trim(startT, stopT, !!isComplement)) { |
| 353 | return this; |
| 354 | } |
| 355 | return null; |
| 356 | }; |
| 357 | |
| 358 | // bones should be a 3d array. |
| 359 | // Each bone is a 3x2 transformation matrix in column major order: |
| 360 | // | scaleX skewX transX | |
| 361 | // | skewY scaleY transY | |
| 362 | // and bones is an array of those matrices. |
| 363 | // Returns a copy of this (SkVertices) with the bones applied. |
| 364 | CanvasKit.SkVertices.prototype.applyBones = function(bones) { |
| 365 | var bPtr = copy3dArray(bones, CanvasKit.HEAPF32); |
| 366 | var vert = this._applyBones(bPtr, bones.length); |
| 367 | CanvasKit._free(bPtr); |
| 368 | return vert; |
| 369 | } |
| 370 | |
| 371 | CanvasKit.SkImage.prototype.encodeToData = function() { |
| 372 | if (!arguments.length) { |
| 373 | return this._encodeToData(); |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 374 | } |
Kevin Lubick | 53965c9 | 2018-10-11 08:51:55 -0400 | [diff] [blame] | 375 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 376 | if (arguments.length === 2) { |
| 377 | var a = arguments; |
| 378 | return this._encodeToDataWithFormat(a[0], a[1]); |
Alexander Khovansky | 3e11933 | 2018-11-15 02:01:19 +0300 | [diff] [blame] | 379 | } |
| 380 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 381 | throw 'encodeToData expected to take 0 or 2 arguments. Got ' + arguments.length; |
| 382 | } |
Kevin Lubick | 1ba9c4d | 2019-02-22 10:04:06 -0500 | [diff] [blame] | 383 | |
Kevin Lubick | a064c28 | 2019-04-04 09:28:53 -0400 | [diff] [blame^] | 384 | CanvasKit.SkImage.prototype.makeShader = function(xTileMode, yTileMode, localMatrix) { |
| 385 | if (localMatrix) { |
| 386 | // Add perspective args if not provided. |
| 387 | if (localMatrix.length === 6) { |
| 388 | localMatrix.push(0, 0, 1); |
| 389 | } |
| 390 | return this._makeShader(xTileMode, yTileMode, localMatrix); |
| 391 | } else { |
| 392 | return this._makeShader(xTileMode, yTileMode); |
| 393 | } |
| 394 | } |
| 395 | |
Kevin Lubick | ee91c07 | 2019-03-29 10:39:52 -0400 | [diff] [blame] | 396 | // atlas is an SkImage, e.g. from CanvasKit.MakeImageFromEncoded |
| 397 | // srcRects and dstXforms should be CanvasKit.SkRectBuilder and CanvasKit.RSXFormBuilder |
| 398 | // or just arrays of floats in groups of 4. |
| 399 | // colors, if provided, should be a CanvasKit.SkColorBuilder or array of SkColor |
| 400 | // (from CanvasKit.Color) |
| 401 | CanvasKit.SkCanvas.prototype.drawAtlas = function(atlas, srcRects, dstXforms, paint, |
| 402 | /*optional*/ blendMode, colors) { |
| 403 | if (!atlas || !paint || !srcRects || !dstXforms) { |
| 404 | SkDebug('Doing nothing since missing a required input'); |
| 405 | return; |
| 406 | } |
| 407 | if (srcRects.length !== dstXforms.length || (colors && colors.length !== dstXforms.length)) { |
| 408 | SkDebug('Doing nothing since input arrays length mismatches'); |
| 409 | } |
| 410 | if (!blendMode) { |
| 411 | blendMode = CanvasKit.BlendMode.SrcOver; |
| 412 | } |
| 413 | |
| 414 | var srcRectPtr; |
| 415 | if (srcRects.build) { |
| 416 | srcRectPtr = srcRects.build(); |
| 417 | } else { |
| 418 | srcRectPtr = copy1dArray(srcRects, CanvasKit.HEAPF32); |
| 419 | } |
| 420 | |
| 421 | var dstXformPtr; |
| 422 | if (dstXforms.build) { |
| 423 | dstXformPtr = dstXforms.build(); |
| 424 | } else { |
| 425 | dstXformPtr = copy1dArray(dstXforms, CanvasKit.HEAPF32); |
| 426 | } |
| 427 | |
| 428 | var colorPtr = 0; // enscriptem doesn't like undefined for nullptr |
| 429 | if (colors) { |
| 430 | if (colors.build) { |
| 431 | colorPtr = colors.build(); |
| 432 | } else { |
| 433 | colorPtr = copy1dArray(colors, CanvasKit.HEAPU32); |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | this._drawAtlas(atlas, dstXformPtr, srcRectPtr, colorPtr, dstXforms.length, |
| 438 | blendMode, paint); |
| 439 | |
| 440 | if (srcRectPtr && !srcRects.build) { |
| 441 | CanvasKit._free(srcRectPtr); |
| 442 | } |
| 443 | if (dstXformPtr && !dstXforms.build) { |
| 444 | CanvasKit._free(dstXformPtr); |
| 445 | } |
| 446 | if (colorPtr && !colors.build) { |
| 447 | CanvasKit._free(colorPtr); |
| 448 | } |
| 449 | |
| 450 | } |
| 451 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 452 | // str can be either a text string or a ShapedText object |
| 453 | CanvasKit.SkCanvas.prototype.drawText = function(str, x, y, paint, font) { |
| 454 | if (typeof str === 'string') { |
Kevin Lubick | ec4903d | 2019-01-14 08:36:08 -0500 | [diff] [blame] | 455 | // lengthBytesUTF8 and stringToUTF8Array are defined in the emscripten |
| 456 | // JS. See https://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html#stringToUTF8 |
| 457 | // Add 1 for null terminator |
| 458 | var strLen = lengthBytesUTF8(str) + 1; |
| 459 | var strPtr = CanvasKit._malloc(strLen); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 460 | |
Kevin Lubick | ec4903d | 2019-01-14 08:36:08 -0500 | [diff] [blame] | 461 | stringToUTF8(str, strPtr, strLen); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 462 | this._drawSimpleText(strPtr, strLen, x, y, font, paint); |
Kevin Lubick | da3d8ac | 2019-01-07 11:08:55 -0500 | [diff] [blame] | 463 | } else { |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 464 | this._drawShapedText(str, x, y, paint); |
Kevin Lubick | d29edd7 | 2018-12-07 08:29:52 -0500 | [diff] [blame] | 465 | } |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 466 | } |
| 467 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 468 | // returns Uint8Array |
| 469 | CanvasKit.SkCanvas.prototype.readPixels = function(x, y, w, h, alphaType, |
| 470 | colorType, dstRowBytes) { |
| 471 | // supply defaults (which are compatible with HTMLCanvas's getImageData) |
| 472 | alphaType = alphaType || CanvasKit.AlphaType.Unpremul; |
| 473 | colorType = colorType || CanvasKit.ColorType.RGBA_8888; |
| 474 | dstRowBytes = dstRowBytes || (4 * w); |
| 475 | |
| 476 | var len = h * dstRowBytes |
| 477 | var pptr = CanvasKit._malloc(len); |
| 478 | var ok = this._readPixels({ |
| 479 | 'width': w, |
| 480 | 'height': h, |
Kevin Lubick | 52b9f37 | 2018-12-04 13:57:36 -0500 | [diff] [blame] | 481 | 'colorType': colorType, |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 482 | 'alphaType': alphaType, |
| 483 | }, pptr, dstRowBytes, x, y); |
| 484 | if (!ok) { |
| 485 | CanvasKit._free(pptr); |
| 486 | return null; |
| 487 | } |
| 488 | |
| 489 | // The first typed array is just a view into memory. Because we will |
| 490 | // be free-ing that, we call slice to make a persistent copy. |
| 491 | var pixels = new Uint8Array(CanvasKit.HEAPU8.buffer, pptr, len).slice(); |
| 492 | CanvasKit._free(pptr); |
| 493 | return pixels; |
| 494 | } |
| 495 | |
| 496 | // pixels is a TypedArray. No matter the input size, it will be treated as |
| 497 | // a Uint8Array (essentially, a byte array). |
| 498 | CanvasKit.SkCanvas.prototype.writePixels = function(pixels, srcWidth, srcHeight, |
| 499 | destX, destY, alphaType, colorType) { |
| 500 | if (pixels.byteLength % (srcWidth * srcHeight)) { |
| 501 | throw 'pixels length must be a multiple of the srcWidth * srcHeight'; |
| 502 | } |
| 503 | var bytesPerPixel = pixels.byteLength / (srcWidth * srcHeight); |
| 504 | // supply defaults (which are compatible with HTMLCanvas's putImageData) |
| 505 | alphaType = alphaType || CanvasKit.AlphaType.Unpremul; |
| 506 | colorType = colorType || CanvasKit.ColorType.RGBA_8888; |
| 507 | var srcRowBytes = bytesPerPixel * srcWidth; |
| 508 | |
Kevin Lubick | 52b9f37 | 2018-12-04 13:57:36 -0500 | [diff] [blame] | 509 | var pptr = CanvasKit._malloc(pixels.byteLength); |
| 510 | CanvasKit.HEAPU8.set(pixels, pptr); |
Kevin Lubick | 52b9f37 | 2018-12-04 13:57:36 -0500 | [diff] [blame] | 511 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 512 | var ok = this._writePixels({ |
| 513 | 'width': srcWidth, |
| 514 | 'height': srcHeight, |
| 515 | 'colorType': colorType, |
| 516 | 'alphaType': alphaType, |
| 517 | }, pptr, srcRowBytes, destX, destY); |
| 518 | |
| 519 | CanvasKit._free(pptr); |
| 520 | return ok; |
Kevin Lubick | 52b9f37 | 2018-12-04 13:57:36 -0500 | [diff] [blame] | 521 | } |
| 522 | |
Kevin Lubick | d3cfbca | 2019-03-15 15:36:29 -0400 | [diff] [blame] | 523 | // Returns an array of the widths of the glyphs in this string. |
| 524 | CanvasKit.SkFont.prototype.getWidths = function(str) { |
| 525 | // add 1 for null terminator |
| 526 | var codePoints = str.length + 1; |
| 527 | // lengthBytesUTF8 and stringToUTF8Array are defined in the emscripten |
| 528 | // JS. See https://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html#stringToUTF8 |
| 529 | // Add 1 for null terminator |
| 530 | var strBytes = lengthBytesUTF8(str) + 1; |
| 531 | var strPtr = CanvasKit._malloc(strBytes); |
| 532 | stringToUTF8(str, strPtr, strBytes); |
| 533 | |
| 534 | var bytesPerFloat = 4; |
| 535 | // allocate widths == numCodePoints |
| 536 | var widthPtr = CanvasKit._malloc(codePoints * bytesPerFloat); |
| 537 | if (!this._getWidths(strPtr, strBytes, codePoints, widthPtr)) { |
| 538 | SkDebug('Could not compute widths'); |
| 539 | CanvasKit._free(strPtr); |
| 540 | CanvasKit._free(widthPtr); |
| 541 | return null; |
| 542 | } |
| 543 | // reminder, this shouldn't copy the data, just is a nice way to |
| 544 | // wrap 4 bytes together into a float. |
| 545 | var widths = new Float32Array(CanvasKit.buffer, widthPtr, codePoints); |
| 546 | // This copies the data so we can free the CanvasKit memory |
| 547 | var retVal = Array.from(widths); |
| 548 | CanvasKit._free(strPtr); |
| 549 | CanvasKit._free(widthPtr); |
| 550 | return retVal; |
| 551 | } |
| 552 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 553 | // fontData should be an arrayBuffer |
| 554 | CanvasKit.SkFontMgr.prototype.MakeTypefaceFromData = function(fontData) { |
| 555 | var data = new Uint8Array(fontData); |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 556 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 557 | var fptr = CanvasKit._malloc(data.byteLength); |
| 558 | CanvasKit.HEAPU8.set(data, fptr); |
| 559 | var font = this._makeTypefaceFromData(fptr, data.byteLength); |
| 560 | if (!font) { |
| 561 | SkDebug('Could not decode font data'); |
| 562 | // We do not need to free the data since the C++ will do that for us |
| 563 | // when the font is deleted (or fails to decode); |
| 564 | return null; |
| 565 | } |
| 566 | return font; |
| 567 | } |
| 568 | |
Kevin Lubick | 359a7e3 | 2019-03-19 09:34:37 -0400 | [diff] [blame] | 569 | CanvasKit.SkSurface.prototype.requestAnimationFrame = function(callback, dirtyRect) { |
| 570 | if (!this._cached_canvas) { |
| 571 | this._cached_canvas = this.getCanvas(); |
| 572 | } |
| 573 | window.requestAnimationFrame(function() { |
Kevin Lubick | 3902628 | 2019-03-28 12:46:40 -0400 | [diff] [blame] | 574 | if (this._context !== undefined) { |
| 575 | CanvasKit.setCurrentContext(this._context); |
| 576 | } |
Kevin Lubick | 359a7e3 | 2019-03-19 09:34:37 -0400 | [diff] [blame] | 577 | |
| 578 | callback(this._cached_canvas); |
| 579 | |
| 580 | this.flush(); |
| 581 | }.bind(this)); |
| 582 | } |
| 583 | |
Kevin Lubick | d3cfbca | 2019-03-15 15:36:29 -0400 | [diff] [blame] | 584 | CanvasKit.SkTextBlob.MakeOnPath = function(str, path, font, initialOffset) { |
| 585 | if (!str || !str.length) { |
| 586 | SkDebug('ignoring 0 length string'); |
| 587 | return; |
| 588 | } |
| 589 | if (!path || !path.countPoints()) { |
| 590 | SkDebug('ignoring empty path'); |
| 591 | return; |
| 592 | } |
| 593 | if (path.countPoints() === 1) { |
| 594 | SkDebug('path has 1 point, returning normal textblob'); |
| 595 | return this.MakeFromText(str, font); |
| 596 | } |
| 597 | |
| 598 | if (!initialOffset) { |
| 599 | initialOffset = 0; |
| 600 | } |
| 601 | |
| 602 | var widths = font.getWidths(str); |
| 603 | |
| 604 | var rsx = new CanvasKit.RSXFormBuilder(); |
| 605 | var meas = new CanvasKit.SkPathMeasure(path, false, 1); |
| 606 | var dist = initialOffset; |
| 607 | for (var i = 0; i < str.length; i++) { |
| 608 | var width = widths[i]; |
| 609 | dist += width/2; |
| 610 | if (dist > meas.getLength()) { |
| 611 | // jump to next contour |
| 612 | if (!meas.nextContour()) { |
| 613 | // We have come to the end of the path - terminate the string |
| 614 | // right here. |
| 615 | str = str.substring(0, i); |
| 616 | break; |
| 617 | } |
| 618 | dist = width/2; |
| 619 | } |
| 620 | |
| 621 | // Gives us the (x, y) coordinates as well as the cos/sin of the tangent |
| 622 | // line at that position. |
| 623 | var xycs = meas.getPosTan(dist); |
| 624 | var cx = xycs[0]; |
| 625 | var cy = xycs[1]; |
| 626 | var cosT = xycs[2]; |
| 627 | var sinT = xycs[3]; |
| 628 | |
| 629 | var adjustedX = cx - (width/2 * cosT); |
| 630 | var adjustedY = cy - (width/2 * sinT); |
| 631 | |
| 632 | rsx.push(cosT, sinT, adjustedX, adjustedY); |
| 633 | dist += width/2; |
| 634 | } |
| 635 | var retVal = this.MakeFromRSXform(str, rsx, font); |
| 636 | rsx.delete(); |
| 637 | meas.delete(); |
| 638 | return retVal; |
| 639 | } |
| 640 | |
| 641 | CanvasKit.SkTextBlob.MakeFromRSXform = function(str, rsxBuilder, font) { |
| 642 | // lengthBytesUTF8 and stringToUTF8Array are defined in the emscripten |
| 643 | // JS. See https://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html#stringToUTF8 |
| 644 | // Add 1 for null terminator |
| 645 | var strLen = lengthBytesUTF8(str) + 1; |
| 646 | var strPtr = CanvasKit._malloc(strLen); |
| 647 | // Add 1 for the null terminator. |
| 648 | stringToUTF8(str, strPtr, strLen); |
| 649 | var rptr = rsxBuilder.build(); |
| 650 | |
| 651 | var blob = CanvasKit.SkTextBlob._MakeFromRSXform(strPtr, strLen - 1, |
| 652 | rptr, font, CanvasKit.TextEncoding.UTF8); |
| 653 | if (!blob) { |
| 654 | SkDebug('Could not make textblob from string "' + str + '"'); |
| 655 | return null; |
| 656 | } |
| 657 | |
| 658 | var origDelete = blob.delete.bind(blob); |
| 659 | blob.delete = function() { |
| 660 | CanvasKit._free(strPtr); |
| 661 | origDelete(); |
| 662 | } |
| 663 | return blob; |
| 664 | } |
| 665 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 666 | CanvasKit.SkTextBlob.MakeFromText = function(str, font) { |
| 667 | // lengthBytesUTF8 and stringToUTF8Array are defined in the emscripten |
| 668 | // JS. See https://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html#stringToUTF8 |
| 669 | // Add 1 for null terminator |
| 670 | var strLen = lengthBytesUTF8(str) + 1; |
| 671 | var strPtr = CanvasKit._malloc(strLen); |
| 672 | // Add 1 for the null terminator. |
| 673 | stringToUTF8(str, strPtr, strLen); |
| 674 | |
| 675 | var blob = CanvasKit.SkTextBlob._MakeFromText(strPtr, strLen - 1, font, CanvasKit.TextEncoding.UTF8); |
| 676 | if (!blob) { |
| 677 | SkDebug('Could not make textblob from string "' + str + '"'); |
| 678 | return null; |
Kevin Lubick | 217056c | 2018-09-20 17:39:31 -0400 | [diff] [blame] | 679 | } |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 680 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 681 | var origDelete = blob.delete.bind(blob); |
| 682 | blob.delete = function() { |
| 683 | CanvasKit._free(strPtr); |
| 684 | origDelete(); |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 685 | } |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 686 | return blob; |
Kevin Lubick | b5ae3b5 | 2018-11-03 07:51:19 -0400 | [diff] [blame] | 687 | } |
| 688 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 689 | // Run through the JS files that are added at compile time. |
| 690 | if (CanvasKit._extraInitializations) { |
| 691 | CanvasKit._extraInitializations.forEach(function(init) { |
| 692 | init(); |
| 693 | }); |
Kevin Lubick | eb2f6b0 | 2018-11-29 15:07:02 -0500 | [diff] [blame] | 694 | } |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 695 | }; // end CanvasKit.onRuntimeInitialized, that is, anything changing prototypes or dynamic. |
Kevin Lubick | eb2f6b0 | 2018-11-29 15:07:02 -0500 | [diff] [blame] | 696 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 697 | CanvasKit.LTRBRect = function(l, t, r, b) { |
| 698 | return { |
| 699 | fLeft: l, |
| 700 | fTop: t, |
| 701 | fRight: r, |
| 702 | fBottom: b, |
| 703 | }; |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 704 | } |
| 705 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 706 | CanvasKit.XYWHRect = function(x, y, w, h) { |
| 707 | return { |
| 708 | fLeft: x, |
| 709 | fTop: y, |
| 710 | fRight: x+w, |
| 711 | fBottom: y+h, |
| 712 | }; |
Kevin Lubick | 1a05fce | 2018-11-20 12:51:16 -0500 | [diff] [blame] | 713 | } |
| 714 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 715 | CanvasKit.MakePathFromCmds = function(cmds) { |
| 716 | var ptrLen = loadCmdsTypedArray(cmds); |
| 717 | var path = CanvasKit._MakePathFromCmds(ptrLen[0], ptrLen[1]); |
| 718 | CanvasKit._free(ptrLen[0]); |
| 719 | return path; |
| 720 | } |
| 721 | |
| 722 | CanvasKit.MakeSkDashPathEffect = function(intervals, phase) { |
| 723 | if (!phase) { |
| 724 | phase = 0; |
| 725 | } |
| 726 | if (!intervals.length || intervals.length % 2 === 1) { |
| 727 | throw 'Intervals array must have even length'; |
| 728 | } |
| 729 | var ptr = copy1dArray(intervals, CanvasKit.HEAPF32); |
| 730 | var dpe = CanvasKit._MakeSkDashPathEffect(ptr, intervals.length, phase); |
| 731 | CanvasKit._free(ptr); |
| 732 | return dpe; |
| 733 | } |
| 734 | |
| 735 | // data is a TypedArray or ArrayBuffer e.g. from fetch().then(resp.arrayBuffer()) |
| 736 | CanvasKit.MakeImageFromEncoded = function(data) { |
| 737 | data = new Uint8Array(data); |
| 738 | |
| 739 | var iptr = CanvasKit._malloc(data.byteLength); |
| 740 | CanvasKit.HEAPU8.set(data, iptr); |
| 741 | var img = CanvasKit._decodeImage(iptr, data.byteLength); |
| 742 | if (!img) { |
| 743 | SkDebug('Could not decode image'); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 744 | return null; |
| 745 | } |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 746 | return img; |
| 747 | } |
| 748 | |
Kevin Lubick | 543f352 | 2019-03-08 10:04:28 -0500 | [diff] [blame] | 749 | // imgData is an SkImage, e.g. from MakeImageFromEncoded or SkSurface.makeImageSnapshot |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 750 | CanvasKit.MakeImageShader = function(img, xTileMode, yTileMode, clampUnpremul, localMatrix) { |
| 751 | if (!img) { |
| 752 | return null; |
| 753 | } |
| 754 | clampUnpremul = clampUnpremul || false; |
| 755 | if (localMatrix) { |
| 756 | // Add perspective args if not provided. |
| 757 | if (localMatrix.length === 6) { |
| 758 | localMatrix.push(0, 0, 1); |
| 759 | } |
| 760 | return CanvasKit._MakeImageShader(img, xTileMode, yTileMode, clampUnpremul, localMatrix); |
| 761 | } else { |
| 762 | return CanvasKit._MakeImageShader(img, xTileMode, yTileMode, clampUnpremul); |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | // pixels is a Uint8Array |
| 767 | CanvasKit.MakeImage = function(pixels, width, height, alphaType, colorType) { |
| 768 | var bytesPerPixel = pixels.byteLength / (width * height); |
| 769 | var info = { |
| 770 | 'width': width, |
| 771 | 'height': height, |
| 772 | 'alphaType': alphaType, |
| 773 | 'colorType': colorType, |
| 774 | }; |
| 775 | var pptr = CanvasKit._malloc(pixels.byteLength); |
| 776 | CanvasKit.HEAPU8.set(pixels, pptr); |
| 777 | // No need to _free iptr, Image takes it with SkData::MakeFromMalloc |
| 778 | |
| 779 | return CanvasKit._MakeImage(info, pptr, pixels.byteLength, width * bytesPerPixel); |
| 780 | } |
| 781 | |
| 782 | CanvasKit.MakeLinearGradientShader = function(start, end, colors, pos, mode, localMatrix, flags) { |
Kevin Lubick | ee91c07 | 2019-03-29 10:39:52 -0400 | [diff] [blame] | 783 | var colorPtr = copy1dArray(colors, CanvasKit.HEAPU32); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 784 | var posPtr = copy1dArray(pos, CanvasKit.HEAPF32); |
| 785 | flags = flags || 0; |
| 786 | |
| 787 | if (localMatrix) { |
| 788 | // Add perspective args if not provided. |
| 789 | if (localMatrix.length === 6) { |
| 790 | localMatrix.push(0, 0, 1); |
| 791 | } |
| 792 | var lgs = CanvasKit._MakeLinearGradientShader(start, end, colorPtr, posPtr, |
| 793 | colors.length, mode, flags, localMatrix); |
| 794 | } else { |
| 795 | var lgs = CanvasKit._MakeLinearGradientShader(start, end, colorPtr, posPtr, |
| 796 | colors.length, mode, flags); |
| 797 | } |
| 798 | |
| 799 | CanvasKit._free(colorPtr); |
| 800 | CanvasKit._free(posPtr); |
| 801 | return lgs; |
| 802 | } |
| 803 | |
| 804 | CanvasKit.MakeRadialGradientShader = function(center, radius, colors, pos, mode, localMatrix, flags) { |
Kevin Lubick | ee91c07 | 2019-03-29 10:39:52 -0400 | [diff] [blame] | 805 | var colorPtr = copy1dArray(colors, CanvasKit.HEAPU32); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 806 | var posPtr = copy1dArray(pos, CanvasKit.HEAPF32); |
| 807 | flags = flags || 0; |
| 808 | |
| 809 | if (localMatrix) { |
| 810 | // Add perspective args if not provided. |
| 811 | if (localMatrix.length === 6) { |
| 812 | localMatrix.push(0, 0, 1); |
| 813 | } |
| 814 | var rgs = CanvasKit._MakeRadialGradientShader(center, radius, colorPtr, posPtr, |
| 815 | colors.length, mode, flags, localMatrix); |
| 816 | } else { |
| 817 | var rgs = CanvasKit._MakeRadialGradientShader(center, radius, colorPtr, posPtr, |
| 818 | colors.length, mode, flags); |
| 819 | } |
| 820 | |
| 821 | CanvasKit._free(colorPtr); |
| 822 | CanvasKit._free(posPtr); |
| 823 | return rgs; |
| 824 | } |
| 825 | |
| 826 | CanvasKit.MakeTwoPointConicalGradientShader = function(start, startRadius, end, endRadius, |
| 827 | colors, pos, mode, localMatrix, flags) { |
Kevin Lubick | ee91c07 | 2019-03-29 10:39:52 -0400 | [diff] [blame] | 828 | var colorPtr = copy1dArray(colors, CanvasKit.HEAPU32); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 829 | var posPtr = copy1dArray(pos, CanvasKit.HEAPF32); |
| 830 | flags = flags || 0; |
| 831 | |
| 832 | if (localMatrix) { |
| 833 | // Add perspective args if not provided. |
| 834 | if (localMatrix.length === 6) { |
| 835 | localMatrix.push(0, 0, 1); |
| 836 | } |
| 837 | var rgs = CanvasKit._MakeTwoPointConicalGradientShader( |
| 838 | start, startRadius, end, endRadius, |
| 839 | colorPtr, posPtr, colors.length, mode, flags, localMatrix); |
| 840 | } else { |
| 841 | var rgs = CanvasKit._MakeTwoPointConicalGradientShader( |
| 842 | start, startRadius, end, endRadius, |
| 843 | colorPtr, posPtr, colors.length, mode, flags); |
| 844 | } |
| 845 | |
| 846 | CanvasKit._free(colorPtr); |
| 847 | CanvasKit._free(posPtr); |
| 848 | return rgs; |
| 849 | } |
| 850 | |
| 851 | CanvasKit.MakeSkVertices = function(mode, positions, textureCoordinates, colors, |
Kevin Lubick | b3574c9 | 2019-03-06 08:25:36 -0500 | [diff] [blame] | 852 | boneIndices, boneWeights, indices, isVolatile) { |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 853 | var positionPtr = copy2dArray(positions, CanvasKit.HEAPF32); |
| 854 | var texPtr = copy2dArray(textureCoordinates, CanvasKit.HEAPF32); |
Kevin Lubick | ee91c07 | 2019-03-29 10:39:52 -0400 | [diff] [blame] | 855 | var colorPtr = copy1dArray(colors, CanvasKit.HEAPU32); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 856 | |
| 857 | var boneIdxPtr = copy2dArray(boneIndices, CanvasKit.HEAP32); |
| 858 | var boneWtPtr = copy2dArray(boneWeights, CanvasKit.HEAPF32); |
| 859 | var idxPtr = copy1dArray(indices, CanvasKit.HEAPU16); |
| 860 | |
Kevin Lubick | b3574c9 | 2019-03-06 08:25:36 -0500 | [diff] [blame] | 861 | // Default isVolitile to true if not set |
| 862 | isVolatile = isVolatile === undefined ? true : isVolatile; |
| 863 | |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 864 | var idxCount = (indices && indices.length) || 0; |
| 865 | // _MakeVertices will copy all the values in, so we are free to release |
| 866 | // the memory after. |
| 867 | var vertices = CanvasKit._MakeSkVertices(mode, positions.length, positionPtr, |
| 868 | texPtr, colorPtr, boneIdxPtr, boneWtPtr, |
Kevin Lubick | b3574c9 | 2019-03-06 08:25:36 -0500 | [diff] [blame] | 869 | idxCount, idxPtr, isVolatile); |
Kevin Lubick | f5ea37f | 2019-02-28 10:06:18 -0500 | [diff] [blame] | 870 | positionPtr && CanvasKit._free(positionPtr); |
| 871 | texPtr && CanvasKit._free(texPtr); |
| 872 | colorPtr && CanvasKit._free(colorPtr); |
| 873 | idxPtr && CanvasKit._free(idxPtr); |
| 874 | boneIdxPtr && CanvasKit._free(boneIdxPtr); |
| 875 | boneWtPtr && CanvasKit._free(boneWtPtr); |
| 876 | return vertices; |
Kevin Lubick | a064c28 | 2019-04-04 09:28:53 -0400 | [diff] [blame^] | 877 | }; |