aboutsummaryrefslogtreecommitdiff
path: root/shm.c
Commit message (Collapse)AuthorAgeFilesLines
* shm: MFD_NOEXEC_SEAL is not defined by musl libcDaniel Eklöf2024-04-301-0/+4
| | | | Closes #11
* 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.
* shm: fix copy-paste typo in memfd name; this is wbg, not fuzzelDaniel Eklöf2021-04-181-1/+1
|
* shm: use XRGB8888 instead of ARGB8888Daniel Eklöf2020-11-301-3/+3
|
* shm: don’t cache buffersDaniel Eklöf2020-10-061-80/+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.
* Initial commitDaniel Eklöf2020-08-011-0/+192
Can display a single PNG image scaled-to-fit on all outputs.