Merge pull request #12359 from mike-000/patch-7

Fix broken link in docs
This commit is contained in:
MoonE
2021-05-27 00:12:30 +02:00
committed by GitHub

View File

@@ -367,9 +367,10 @@ export class Processor extends Disposable {
* pixels, where each pixel is an array of four numbers (`[r, g, b, a]`) in the * pixels, where each pixel is an array of four numbers (`[r, g, b, a]`) in the
* range of 0 - 255. It should return a single pixel array. * range of 0 - 255. It should return a single pixel array.
* For `'image'` type operations, functions will be called with an array of * For `'image'` type operations, functions will be called with an array of
* {@link ImageData https://developer.mozilla.org/en-US/docs/Web/API/ImageData} * [ImageData](https://developer.mozilla.org/en-US/docs/Web/API/ImageData)
* and should return a single {@link ImageData * and should return a single
* https://developer.mozilla.org/en-US/docs/Web/API/ImageData}. The operations * [ImageData](https://developer.mozilla.org/en-US/docs/Web/API/ImageData).
* The operations
* are called with a second "data" argument, which can be used for storage. The * are called with a second "data" argument, which can be used for storage. The
* data object is accessible from raster events, where it can be initialized in * data object is accessible from raster events, where it can be initialized in
* "beforeoperations" and accessed again in "afteroperations". * "beforeoperations" and accessed again in "afteroperations".