summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/CanvasRenderingContext2D.cpp
AgeCommit message (Expand)Author
2022-03-27LibWeb: Use Gfx::Font::pixel_size() when we want pixel metricsAndreas Kling
2022-03-23LibGfx: Implement `Rect::to_rounded<U>()`Jelle Raaijmakers
2022-03-22LibWeb: Convert CRC2D to use TRY for error propagationLinus Groh
2022-03-17Libraries: Use default constructors/destructors in LibWebLenny Maiorani
2022-03-08LibWeb: Move Window from DOM directory & namespace to HTMLLinus Groh
2022-03-05LibWeb: Add all overloads of CanvasRenderingContext2D::drawImage()Idan Horowitz
2022-03-05LibWeb: Use image's intrinsic dimensions when checking their usabilityIdan Horowitz
2022-03-04LibWeb: Implement CanvasRenderingContext2D.getImageData()Linus Groh
2022-03-04LibWeb: Implement CanvasRenderingContext2D.drawImage() closer to specLinus Groh
2022-03-04LibWeb: Add CanvasRenderingContext2D's origin-clean flagLinus Groh
2022-03-04LibWeb: Hide some debug logging behind CANVAS_RENDERING_CONTEXT_2D_DEBUGLinus Groh
2022-02-03LibWeb: Forward CanvasRenderingContext.strokeText() to fillText()Andreas Kling
2022-02-03LibWeb: Add barebones CanvasGradient objectAndreas Kling
2022-02-03LibWeb: Add CanvasRenderingContext2D.bezierCurveTo()Andreas Kling
2022-01-04LibWeb: Implement CanvasRenderingContext2D.measureTextsin-ack
2021-12-27LibWeb: Implement CanvasRenderingContext2D.isContextLost()Linus Groh
2021-12-27LibWeb: Implement CanvasRenderingContext2D.reset()Linus Groh
2021-12-27LibWeb: Implement CanvasRenderingContext2D.restore()Linus Groh
2021-12-27LibWeb: Implement CanvasRenderingContext2D.save()Linus Groh
2021-12-27LibWeb: Encapsulate canvas drawing state in a structLinus Groh
2021-12-27LibWeb: Fix copy/paste typo in CanvasRenderingContext2D::stroke_style()Linus Groh
2021-09-21LibWeb: Paint bitmaps with rounded_int_rect(), not enclosing_int_rect()Sam Atkins
2021-09-20LibWeb: Enable bilinear blending for bitmapsSam Atkins
2021-05-02LibGfx: Unify Rect, Point, and SizeMatthew Olsson
2021-04-27Userland: Move non-standard math constants from math.hJean-Baptiste Boric
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-16Everywhere: Add `-Wdouble-promotion` warningNicholas-Baron
2021-04-15LibWeb: Check radius sign in CanvasRenderingContext2D::{arc, ellipse}Idan Horowitz
2021-04-15LibWeb: Add a naive implemention of CanvasRenderingContext2D::fill_textIdan Horowitz
2021-04-15LibGfx+LibWeb: Wire up CanvasRenderingContext2D.ellipse()AnotherTest
2021-04-14LibWeb: Implement the CanvasRenderingContext2D::rect path methodIdan Horowitz
2021-04-14LibWeb: Request repaint on canvas path finalizaiton via fill/strokeIdan Horowitz
2021-03-15LibWeb: Add CanvasRenderingContext2D.clearRect()Andreas Kling
2021-01-16Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling