aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* jxl: do alpha pre-multiplication manuallyLeonardo Hernández Hernández2024-06-151-3/+22
| | | | | some images does not render correctly if we rely in libjxl doing the pre-multiplication
* webp: do alpha pre-multiplicationLeonardo Hernández Hernández2024-06-141-0/+23
| | | | libwebp returns the alpha as-is
* pkgbuild: add libjxl as dependencyDaniel Eklöf2024-06-121-1/+1
|
* jxl: initialize variables, to silence compiler warningsDaniel Eklöf2024-06-121-3/+3
|
* changelog: move ref to the section where it's referencedDaniel Eklöf2024-06-121-1/+2
|
* jxl: add initial support for JPEG XL using libjxlLeonardo Hernández Hernández2024-06-127-6/+192
|
* use LOG_DBG if the verification of the format failedLeonardo Hernández Hernández2024-06-114-4/+4
|
* replace fprintf with LOG_ERR to log a image failed to loadLeonardo Hernández Hernández2024-06-111-1/+1
|
* shm: MFD_NOEXEC_SEAL is not defined by musl libcDaniel Eklöf2024-04-302-0/+7
| | | | Closes #11
* nanosvg: update to 93ce879dc4c04a3ef1758428ec80083c38610b1fDaniel Eklöf2024-04-272-7/+13
|
* png: do alpha pre-multiplication manuallyDaniel Eklöf2024-04-182-3/+31
| | | | | | | | | Something's up with libpng's alpha-mode... it's required to get proper alpha (transparency) on some images, but at the same time, that breaks other images (they are rendered way too dark). Doing the pre-multiplication manually seems to handle all images correctly.
* changelog: add new 'unreleased' sectionDaniel Eklöf2024-04-171-0/+11
|
* meson/pkgbuild: bump version to 1.2.0Daniel Eklöf2024-04-172-2/+2
|
* changelog: prepare for 1.2.0Daniel Eklöf2024-04-171-5/+6
|
* changelog: svg supportDaniel Eklöf2024-01-031-0/+1
|
* svg: initial support for SVG images, using nanosvgLeonardo Hernández Hernández2023-12-1523-3/+6651
|
* Merge branch 'zoom'Daniel Eklöf2023-10-262-0/+14
|\ | | | | | | Closes #6
| * changelog: zoom instead of stretchDaniel Eklöf2023-10-261-0/+6
| |
| * always zoom into the image instead of stretchingsewn2023-10-261-0/+8
|/
* shm: try with MFD_NOEXEC_SEAL first, then withoutDaniel Eklöf2023-10-131-2/+31
| | | | | | | | | | | | | MFD_NOEXEC_SEAL is only supported on kernels 6.3 and later. If we were compiled on linux >= 6.3, but run on linux < 6.3, we'd exit with an error, due to memfd_create() failing with EINVAL. This patch fixes the problem by first trying to call memfd_create() *with* MFD_NOEXEC_SEAL, and if that fails with EINVAL, we try again without it. Also seal the memory FD once mmap() has been called.
* main: mark surface as opaqueDaniel Eklöf2023-07-032-0/+9
|
* pkgbuild: add changelogDaniel Eklöf2023-06-131-0/+1
|
* main: implement layer_surface::closed() eventDaniel Eklöf2023-01-022-6/+33
| | | | | | | | | | | | | | | 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.
* pkgbuild: add libwebp dependencyDaniel Eklöf2022-10-271-1/+1
|
* changelog: add new ‘unreleased’ sectionDaniel Eklöf2022-10-241-0/+11
|
* main: log version at startupDaniel Eklöf2022-10-241-0/+3
|
* generate-version.sh: fuzzel -> wbg (oops!)Daniel Eklöf2022-10-241-1/+1
|
* 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
|