aboutsummaryrefslogtreecommitdiff
path: root/main.c
Commit message (Collapse)AuthorAgeFilesLines
* main: exclude svg only code when svg is not enabledSertonix2024-08-021-3/+6
|
* svg: honor --stretch optionSertonix2024-08-021-1/+1
|
* main: fix memory leak with svg graphicsSertonix2024-08-021-0/+1
|
* wbg: use getopt() for option parsing, add help and version optionsDaniel Eklöf2024-08-021-13/+78
|
* render: maximize by default, add --stretchemrakyz2024-08-021-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 resolutionSertonix2024-07-281-30/+49
|
* jxl: add initial support for JPEG XL using libjxlLeonardo Hernández Hernández2024-06-121-0/+7
|
* replace fprintf with LOG_ERR to log a image failed to loadLeonardo Hernández Hernández2024-06-111-1/+1
|
* svg: initial support for SVG images, using nanosvgLeonardo Hernández Hernández2023-12-151-0/+7
|
* always zoom into the image instead of stretchingsewn2023-10-261-0/+8
|
* main: mark surface as opaqueDaniel Eklöf2023-07-031-0/+5
|
* main: implement layer_surface::closed() eventDaniel Eklöf2023-01-021-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 startupDaniel Eklöf2022-10-241-0/+3
|
* webp: intial support for WebP images, using libwebpLeonardo Hernández Hernández2022-10-041-0/+7
|
* main: Do not render a frame on same-size configureLeonardo Hernandez Hernandez2022-03-141-1/+13
| | | | Based on https://github.com/emersion/mako/pull/410
* main: check for errors in wl_display_dispatch()Daniel Eklöf2022-01-091-2/+6
|
* main: fix errno checkDaniel Eklöf2021-04-181-1/+1
|
* wayland: handle output’s being registered before layer-shellDaniel Eklöf2020-12-031-22/+42
|
* main: fix “may be used uninitialized” errorDaniel Eklöf2020-11-301-2/+2
|
* main: error handling, closes #1Daniel Eklöf2020-11-301-12/+29
|
* shm: use XRGB8888 instead of ARGB8888Daniel Eklöf2020-11-301-4/+10
|
* render: no need to pre-fill the surface with redDaniel Eklöf2020-11-191-8/+4
|
* main: re-render when output’s scale factor changesDaniel Eklöf2020-11-171-0/+4
|
* render: fix pixman transform’s scale factor when output has a scale factor > 1Daniel Eklöf2020-11-171-2/+2
|
* main: use wl_output_release() instead of wl_output_destroy()Daniel Eklöf2020-11-131-1/+1
|
* shm: don’t cache buffersDaniel Eklöf2020-10-061-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 failDaniel Eklöf2020-10-011-5/+13
|
* pixman: use ‘best’ filter when scaling imageDaniel Eklöf2020-10-011-0/+1
|
* main: use fprintf() for usage errorsDaniel Eklöf2020-09-271-2/+3
|
* dbg: disable debug logging by defaultDaniel Eklöf2020-09-271-1/+1
|
* make both libpng and libjpeg optionalDaniel Eklöf2020-09-201-3/+15
|
* jpeg: initial support for JPEG images, using libjpegDaniel Eklöf2020-09-201-1/+4
|
* main: render: use scaled width/height when compositing imageDaniel Eklöf2020-09-201-3/+5
|
* Initial commitDaniel Eklöf2020-08-011-0/+421
Can display a single PNG image scaled-to-fit on all outputs.