mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-11 05:33:55 -04:00
shm: don't set pixman_fmt_without_alpha twice
When selecting 16-bit surfaces, we set pixman_fmt_without_alpha twice, and never set pixman_fmt_with_alpha. This caused 10-bit surfaces to be used instead, since it checks if pixman_fmt_with_alpha has been overridden or not.
This commit is contained in:
parent
57ae3bb89c
commit
7ab43ebf74
2 changed files with 5 additions and 1 deletions
|
|
@ -82,6 +82,10 @@
|
||||||
### Deprecated
|
### Deprecated
|
||||||
### Removed
|
### Removed
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
* 10-bit surfaces sometimes used instead of 16-bit.
|
||||||
|
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
### Contributors
|
### Contributors
|
||||||
|
|
||||||
|
|
|
||||||
2
shm.c
2
shm.c
|
|
@ -994,7 +994,7 @@ shm_chain_new(struct wayland *wayl, bool scrollable, size_t pix_instances,
|
||||||
pixman_fmt_without_alpha = PIXMAN_a16b16g16r16;
|
pixman_fmt_without_alpha = PIXMAN_a16b16g16r16;
|
||||||
shm_fmt_without_alpha = WL_SHM_FORMAT_XBGR16161616;
|
shm_fmt_without_alpha = WL_SHM_FORMAT_XBGR16161616;
|
||||||
|
|
||||||
pixman_fmt_without_alpha = PIXMAN_a16b16g16r16;
|
pixman_fmt_with_alpha = PIXMAN_a16b16g16r16;
|
||||||
shm_fmt_with_alpha = WL_SHM_FORMAT_ABGR16161616;
|
shm_fmt_with_alpha = WL_SHM_FORMAT_ABGR16161616;
|
||||||
|
|
||||||
if (!have_logged) {
|
if (!have_logged) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue