mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
desktop/output: chase wlroots private fields update
This will be replaced with a proper solution later.
This commit is contained in:
parent
a63027245a
commit
015e357fce
|
@ -188,8 +188,8 @@ static enum wlr_scale_filter_mode get_scale_filter(struct sway_output *output,
|
|||
struct wlr_scene_buffer *buffer) {
|
||||
// if we are scaling down, we should always choose linear
|
||||
if (buffer->dst_width > 0 && buffer->dst_height > 0 && (
|
||||
buffer->dst_width < buffer->buffer_width ||
|
||||
buffer->dst_height < buffer->buffer_height)) {
|
||||
buffer->dst_width < buffer->WLR_PRIVATE.buffer_width ||
|
||||
buffer->dst_height < buffer->WLR_PRIVATE.buffer_height)) {
|
||||
return WLR_SCALE_FILTER_BILINEAR;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue