CanvasImageSmoothing.idl 324 B

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