ladybird/Libraries/LibWeb/HTML/Canvas/CanvasImageSmoothing.idl

9 lines
324 B
Text
Raw Normal View History

2023-11-08 11:04:56 -07:00
#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)
};