ladybird/Userland/Libraries/LibWeb/HTML/Canvas/CanvasImageSmoothing.idl
2023-11-11 08:51:51 +01:00

9 lines
324 B
Plaintext

#import <HTML/CanvasRenderingContext2D.idl>
// https://html.spec.whatwg.org/multipage/canvas.html#canvasimagesmoothing
interface mixin CanvasImageSmoothing {
// image smoothing
attribute boolean imageSmoothingEnabled; // (default true)
attribute ImageSmoothingQuality imageSmoothingQuality; // (default low)
};