Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | main: exclude svg only code when svg is not enabled | Sertonix | 2024-08-02 | 1 | -3/+6 |
| | |||||
* | svg: honor --stretch option | Sertonix | 2024-08-02 | 1 | -1/+1 |
| | |||||
* | main: fix memory leak with svg graphics | Sertonix | 2024-08-02 | 1 | -0/+1 |
| | |||||
* | wbg: use getopt() for option parsing, add help and version options | Daniel Eklöf | 2024-08-02 | 1 | -13/+78 |
| | |||||
* | render: maximize by default, add --stretch | emrakyz | 2024-08-02 | 1 | -51/+33 |
| | | | | | | | | This patch changes the default rendering mode to "maximized". To get the old behavior, use the --stretch command line option. Closes #13 | ||||
* | svg: rasterize with output resolution | Sertonix | 2024-07-28 | 1 | -30/+49 |
| | |||||
* | jxl: add initial support for JPEG XL using libjxl | Leonardo Hernández Hernández | 2024-06-12 | 1 | -0/+7 |
| | |||||
* | replace fprintf with LOG_ERR to log a image failed to load | Leonardo Hernández Hernández | 2024-06-11 | 1 | -1/+1 |
| | |||||
* | svg: initial support for SVG images, using nanosvg | Leonardo Hernández Hernández | 2023-12-15 | 1 | -0/+7 |
| | |||||
* | always zoom into the image instead of stretching | sewn | 2023-10-26 | 1 | -0/+8 |
| | |||||
* | main: mark surface as opaque | Daniel Eklöf | 2023-07-03 | 1 | -0/+5 |
| | |||||
* | main: implement layer_surface::closed() event | Daniel Eklöf | 2023-01-02 | 1 | -6/+29 |
| | | | | | | | | | | | | | | | Destroy the surface, and clear the ‘configured’ flag. Note that we need to take care we don’t reference a destroyed output object; if the compositor destroyed the output before calling the closed() event, the ‘data’ argument will be an invalid pointer. Since removing the output global _also_ destroys the surface, we can handle this by looping all known output globals, and explicitly destroy the surface if we find a match. If we don’t find a match, that means the output has already been destroyed, and we don’t have to do anything at all. | ||||
* | main: log version at startup | Daniel Eklöf | 2022-10-24 | 1 | -0/+3 |
| | |||||
* | webp: intial support for WebP images, using libwebp | Leonardo Hernández Hernández | 2022-10-04 | 1 | -0/+7 |
| | |||||
* | main: Do not render a frame on same-size configure | Leonardo Hernandez Hernandez | 2022-03-14 | 1 | -1/+13 |
| | | | | Based on https://github.com/emersion/mako/pull/410 | ||||
* | main: check for errors in wl_display_dispatch() | Daniel Eklöf | 2022-01-09 | 1 | -2/+6 |
| | |||||
* | main: fix errno check | Daniel Eklöf | 2021-04-18 | 1 | -1/+1 |
| | |||||
* | wayland: handle output’s being registered before layer-shell | Daniel Eklöf | 2020-12-03 | 1 | -22/+42 |
| | |||||
* | main: fix “may be used uninitialized” error | Daniel Eklöf | 2020-11-30 | 1 | -2/+2 |
| | |||||
* | main: error handling, closes #1 | Daniel Eklöf | 2020-11-30 | 1 | -12/+29 |
| | |||||
* | shm: use XRGB8888 instead of ARGB8888 | Daniel Eklöf | 2020-11-30 | 1 | -4/+10 |
| | |||||
* | render: no need to pre-fill the surface with red | Daniel Eklöf | 2020-11-19 | 1 | -8/+4 |
| | |||||
* | main: re-render when output’s scale factor changes | Daniel Eklöf | 2020-11-17 | 1 | -0/+4 |
| | |||||
* | render: fix pixman transform’s scale factor when output has a scale factor > 1 | Daniel Eklöf | 2020-11-17 | 1 | -2/+2 |
| | |||||
* | main: use wl_output_release() instead of wl_output_destroy() | Daniel Eklöf | 2020-11-13 | 1 | -1/+1 |
| | |||||
* | shm: don’t cache buffers | Daniel Eklöf | 2020-10-06 | 1 | -1/+0 |
| | | | | | | | | wbg typically only renders a buffer once. If we *do* need to re-render, it’s because something changed: the scaling factor, or a new monitor came online etc. Thus, there’s no point in caching buffers; it just uses up memory. | ||||
* | main: open file once, in main, and log an error when we fail | Daniel Eklöf | 2020-10-01 | 1 | -5/+13 |
| | |||||
* | pixman: use ‘best’ filter when scaling image | Daniel Eklöf | 2020-10-01 | 1 | -0/+1 |
| | |||||
* | main: use fprintf() for usage errors | Daniel Eklöf | 2020-09-27 | 1 | -2/+3 |
| | |||||
* | dbg: disable debug logging by default | Daniel Eklöf | 2020-09-27 | 1 | -1/+1 |
| | |||||
* | make both libpng and libjpeg optional | Daniel Eklöf | 2020-09-20 | 1 | -3/+15 |
| | |||||
* | jpeg: initial support for JPEG images, using libjpeg | Daniel Eklöf | 2020-09-20 | 1 | -1/+4 |
| | |||||
* | main: render: use scaled width/height when compositing image | Daniel Eklöf | 2020-09-20 | 1 | -3/+5 |
| | |||||
* | Initial commit | Daniel Eklöf | 2020-08-01 | 1 | -0/+421 |
Can display a single PNG image scaled-to-fit on all outputs. |