aboutsummaryrefslogtreecommitdiff
path: root/main.c
Commit message (Collapse)AuthorAgeFilesLines
* 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.