You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

processScreenshot.js 426B

123456789101112
  1. // @flow
  2. /**
  3. * Helper method used to process screenshots captured by the {@code ScreenshotCaptureEffect}.
  4. *
  5. * @param {HTMLCanvasElement} canvas - The canvas containing a screenshot to be processed.
  6. * @param {Object} options - Custom options required for processing.
  7. * @returns {void}
  8. */
  9. export function processScreenshot(canvas: HTMLCanvasElement, options: Object) { // eslint-disable-line no-unused-vars
  10. return;
  11. }