aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* meson/pkgbuild: bump version to 1.1.0Daniel Eklöf2022-10-242-2/+2
|
* changelog: prepare for 1.1.0 releaseDaniel Eklöf2022-10-241-6/+5
|
* changelog: rough backport of all changes/fixes since 1.0.2 releaseDaniel Eklöf2022-10-241-0/+10
|
* changelog: new file, empty for nowDaniel Eklöf2022-10-241-0/+13
|
* webp: don’t ignore fread() errorsDaniel Eklöf2022-10-051-2/+1
| | | | | | Fixes: ../webp.c:38:5: error: ignoring return value of ‘fread’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
* readme: add webp infoLeonardo Hernández Hernández2022-10-041-3/+5
|
* webp: simplify error pathLeonardo Hernández Hernández2022-10-041-14/+13
|
* webp: intial support for WebP images, using libwebpLeonardo Hernández Hernández2022-10-045-2/+97
|
* 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
* meson: stop using deprecated functions, require meson >= 0.58Daniel Eklöf2022-02-271-4/+4
| | | | | * get_pkgconfig_variable() -> get_variable() * meson.build_root() -> meson.global_build_root()
* main: check for errors in wl_display_dispatch()Daniel Eklöf2022-01-091-2/+6
|
* meson: generate-version: use CURRENT_SOURCE_DIR instead of SOURCE_ROOTDaniel Eklöf2021-12-211-1/+1
|
* meson: run generate_version.sh in a C localeDaniel Eklöf2021-08-252-2/+3
| | | | | | | | Previously, only the date command inside the script was run with LC_TIME=C. But there’s no reason to be that conservative; we absolutely do not want _anything_ in that script to generate locale dependent output.
* wlr-layer-shell: bumpDaniel Eklöf2021-06-271-9/+88
|
* meson: version.sh: SOURCE_DIR is not valid in custom_targets()Daniel Eklöf2021-05-041-1/+1
|
* readme: add https://codeberg.org/droc12345/wbg to list of derivative workDaniel Eklöf2021-04-281-0/+6
| | | | Closes #2
* main: fix errno checkDaniel Eklöf2021-04-181-1/+1
|
* shm: fix copy-paste typo in memfd name; this is wbg, not fuzzelDaniel Eklöf2021-04-181-1/+1
|
* pkgbuild: makedepends: add wayland-protocolsDaniel Eklöf2021-04-181-1/+1
|
* pkgbuild: add missing dependency ‘pixman’Daniel Eklöf2021-02-261-1/+1
|
* readme: add “repology” badgeDaniel Eklöf2021-02-231-0/+2
|
* 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-302-7/+13
|
* render: no need to pre-fill the surface with redDaniel Eklöf2020-11-191-8/+4
|
* meson/pkgbuild: bump version to 1.0.1Daniel Eklöf2020-11-172-2/+2
|
* 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
|
* meson/pkgbuild: bump version to 1.0.0Daniel Eklöf2020-11-132-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-063-82/+17
| | | | | | | | 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-015-22/+26
|
* jpg: fix overly large allocation of the image backing bufferDaniel Eklöf2020-10-011-1/+1
|
* pixman: use ‘best’ filter when scaling imageDaniel Eklöf2020-10-011-0/+1
|
* pkgbuild: initial commitDaniel Eklöf2020-09-271-0/+24
|
* main: use fprintf() for usage errorsDaniel Eklöf2020-09-271-2/+3
|
* readme: mention -Dpng=disabled|enabled and -Djpeg=disabled|enabledDaniel Eklöf2020-09-271-0/+4
|
* readme: initial readmeDaniel Eklöf2020-09-271-0/+38
|
* dbg: disable debug logging by defaultDaniel Eklöf2020-09-272-2/+2
|
* make both libpng and libjpeg optionalDaniel Eklöf2020-09-203-7/+47
|
* jpeg: initial support for JPEG images, using libjpegDaniel Eklöf2020-09-204-2/+131
|
* main: render: use scaled width/height when compositing imageDaniel Eklöf2020-09-201-3/+5
|
* png: disable alphaDaniel Eklöf2020-09-201-4/+4
| | | | We’re displaying a background; there’s nothing behind it...
* license: fix yearDaniel Eklöf2020-08-011-1/+1
|
* Initial commitDaniel Eklöf2020-08-0113-0/+1472
Can display a single PNG image scaled-to-fit on all outputs.