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 389B

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