UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

39 lines 1.62 kB
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } import { HostObject } from "./Host"; import { JsiSkCanvas } from "./JsiSkCanvas"; import { JsiSkImage } from "./JsiSkImage"; import { JsiSkRect } from "./JsiSkRect"; export class JsiSkSurface extends HostObject { constructor(CanvasKit, ref) { super(CanvasKit, ref, "Surface"); _defineProperty(this, "dispose", () => { this.ref.dispose(); }); } flush() { this.ref.flush(); } width() { return this.ref.width(); } height() { return this.ref.height(); } getCanvas() { return new JsiSkCanvas(this.CanvasKit, this.ref.getCanvas()); } makeImageSnapshot(bounds, outputImage) { const image = this.ref.makeImageSnapshot(bounds ? Array.from(JsiSkRect.fromValue(this.CanvasKit, bounds)) : undefined); if (outputImage) { outputImage.ref = image; } return new JsiSkImage(this.CanvasKit, image); } getNativeTextureUnstable() { console.warn("getBackendTexture is not implemented on Web"); return null; } } //# sourceMappingURL=JsiSkSurface.js.map