aboutsummaryrefslogtreecommitdiff
path: root/src/canvas.c
AgeCommit message (Collapse)Author
2021-07-29Scale fonts when Wayland updates scaling factorIvan Oleynikov
Before this commit, the code in src/wl_window.c seemed to handle the Wayland scaling [1] correctly, it was sending resize events to imv to update the buffer size accordingly. One thing it didn't update is the scaling of fonts that Pango renders on Cairo. This commit simply forwards the scaling factor (computed as [1] requests) together with updated buffer dimentions in resize event, and when the resize event is handled it calls cairo_surface_set_device_scale to notify Pango/Cairo of the scaling. For X11, I simply assume the scaline factor is always 1. This seems to be what the old code did: `grep scale src/x11_window.c` gives no matches. AFAIK, X11 does not have an established way of telling clients what scaling factor to use (and never updates it at runtime). [1]: https://wayland-book.com/surfaces-in-depth/hidpi.html
2020-07-21Support rotate and flip commands on SVGTuomas Siipola
2020-06-12Make rotation clockwiseAnton Älgmyr
The documentation already stated that it should be clockwise, seems like I switched/intended to switch and some point.
2020-06-12Add rotation and flipping commands.Anton Älgmyr
Rotation can be done by any amount (not limited to multiples of 90). Commands allow flipping horizontally and vertically. The flips are done relative to the current rotation.
2020-05-21fix nearest_neighbour upscaling methodnycex
2019-09-02console: Use icu to provide proper UTF-8 editingHarry Jeffery
2019-08-07canvas: Fix crashHarry Jeffery
2019-07-12Start replacing glfw with imv_windowHarry Jeffery
2019-07-03Big glfw refactorHarry Jeffery
I did a lot of this in a very ad-hoc fashion with no proper commit history. As such, the kindest thing to do seemed to be to just squash it into this one commit.