<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Screen size cannot rely on wl_output scale and geometry"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=101436#c5">Comment # 5</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Screen size cannot rely on wl_output scale and geometry"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=101436">bug 101436</a>
              from <span class="vcard"><a class="email" href="mailto:jadahl@gmail.com" title="Jonas Ådahl <jadahl@gmail.com>"> <span class="fn">Jonas Ådahl</span></a>
</span></b>
        <pre>(In reply to Pekka Paalanen from <a href="show_bug.cgi?id=101436#c4">comment #4</a>)
<span class="quote">> (In reply to Jonas Ådahl from <a href="show_bug.cgi?id=101436#c2">comment #2</a>)
> > (In reply to Pekka Paalanen from <a href="show_bug.cgi?id=101436#c1">comment #1</a>)</span >

... snip ..

<span class="quote">> > > 
> > > You now want to support fractional scaling behind applications' back. Was
> > > this not foreseen when the wl_output and wl_buffer scale protocol was
> > > designed? What has changed? Why is it now feasible?
> > 
> > Currently it is done by telling clients to scale with ceilf(scale) then
> > downscale. For example if you scale the area of a monitor with scale 1.5,
> > you'll tell clients to draw at 2, then downscale to 1.5.
> > 
> > Right now this works by pretending that the mode of wl_output is the logical
> > monitor size. Xwayland windows will of course still always to be considered
> > scale 1, and upscaled to 1.5.
> > 
> > I somewhat touched on it in this E-mail:
> > <a href="https://mail.gnome.org/archives/gnome-shell-list/2017-June/msg00000.html">https://mail.gnome.org/archives/gnome-shell-list/2017-June/msg00000.html</a>

> But why was that implemented? Is fractional scaling not too ugly to be used
> after all? Why do you want it? What is different from the time the scaling
> feature was designed? If it's really needed, then I feel we made a mistake
> with the integer-only scales design in the protocol. Should we have also a
> divisor for the scale factor?

> The email does not explain why, but it seems to contradict some claims that
> arose during my and Olivier's irc discussion.</span >

The reason is mostly because some monitor resolutions doesn't look good on
neither scale 1 or scale 2. In the X11 world, people tend to use xrandr scale
hacks to scale things some way, and we but we want to do it a bit better on
Wayland by at least only scaling down, instead of scaling up.

As far as I know, this is similar to how certain HiDPI aware OS:es does it
(draw larger and scale down) and (if I haven't misunderstood) still how QT does
it client side.

<span class="quote">> 
> From the beginning, wl_output's modes are the video modes on the hardware
> which means that if a client aims for perfect fit with a fullscreen,
> directly scanned out buffer, it needs to make the buffer size exactly the
> advertized mode size. I think this is the fundamental feature we need to
> keep intact. It is a bypass of the shell protocols unfortunately, I'm not
> sure we can make that go away.</span >

The problem is that with fractional scaling, it's not possible to align things
so they still match a pixel grid. With integer scaling, we don't have that
problem as when we say "use logical size 100x100", a scale two client will just
create a 200x200 size buffer. When we use fractional scaling (for example
1.7391304347826086), how should a client create a 173.913x173.913 pixels large
buffer?

By just passing scale 2, we avoid all the protocol issues, and deal with it
exclusively in the compositor only during the paint stage.

The ways we can deal with this to avoid any scaling is either to dive into
dealing with half pixels (by adding policy about rounding and what not I
suppose) and all the related issues, or we allow a way to bypass the scaling
factors when we know we won't have any half pixel issues (for example, in the
mutter implementation, a fullscreen window will always align perfectly with
real pixels).

<span class="quote">> 
> If RandR information in Xwayland needs to be different from the hardware
> video modes, I believe that should be computed in Xwayland, otherwise we
> screw up all Wayland clients; or, sending different parameters to one client
> (Xwayland) vs. others in a non-Xwayland-specific interface is far too subtle
> to rely on IMO.</span >

Yea, the fact that we pass the scaled mode to Xwayland now is just because
Xwayland simply works that way right now. I opened this so we can eventually
actually pass real mode values to wl_output while not having X11 clients go
nuts.

A simple "wp_xwayland_configure_screen" that takes a bunch of logical
coordinate space rects might even do. If we pass any any fractional scales we'd
have to deal with precision loss errors.

We could possibly set the current xrandr configuration to the current logical
pixel configuration, while listing the actual modes as alternatives, then allow
clients to override the mode under certain circumstances (see below).

<span class="quote">> 
> I think it would be ok for shell protocols to offer alternative fullscreen
> window sizing methods that worked in the logical pixels instead of output
> hardware pixels - essentially xdg_shell already does that AFAIU. Fitting
> this together with the wl_output size is awkward, but I think it is doable
> with wl_viewport: you make the buffer with the wl_output size and use
> wl_viewport to make the window size match what the shell protocol asks for.
> That might allow for fractional scaling combined with a direct scanout path
> for e.g. native Wayland games.</span >

Hmm. Interesting idea to use wp_viewporter (previously wl_viewport) together
with wl_output modes. One potential issue would be if a client would want to
combine multiple outputs into one large texture that is drawn. I guess setting
up multiple viewports of the same wl_surface would work though.

<span class="quote">> 
> But all that seems fundamentally incompatible with Xwayland. I think games
> there need to just rely on display hardware doing the scaling since drawing
> a buffer matching the hardware mode does not seem possible for output scales
> other than one.

> Is there something in the above that just cannot be made to work with Mutter
> or denies features you want like the fractional scaling?</span >

I can't think of anything that would make that impossible. The issue however is
that we still wont change any mode by just using wp_viewporter. For example,
maybe a game/video player wants to use another framerate, or a video player
wants to enable interlacing.

<span class="quote">> 
> Should we look forward to deprecating wl_buffer scale from the protocol (as
> in, recommend it to be always left to one) if we use wl_viewport as a
> recommended solution?</span >


I think it's fairly incompatible indeed, but for isolated use cases, I think it
could be made to work - not without issues though. A potential way it could
work is as follows:

1) Game A starts, the current mode is the logical mode
( The following two might not happen )
2) Game A doesn't change any mode and starts, and will be scaled up by the
compositor
3) Game A allows the user to change resolution, and will list the native
resolution among the choices - the user selects the native resolution
)
4) Game A sets the native resolution
5) Xwayland pretends the resolution change actually succeeded, knowing what
client did it
6) Game A will resize/create a new Window and make it fullscreen
7) Xwayland will see that an X11 client created a window that matches the fake
resolution and will issue a fullscreen-with-mode-change (or some other
equivalent method using wp_viewporter or something else)
8.1) If the mode change was approved given compositor policy, the output mode
will be changed, and the content of the X11 client can now shown without being
scaled using the native resolution
8.2) If the mode change as denied, this would have to be communicated too (I
guess we could rely on wl_output updates here though) 

For HiDPI aware clients, I wonder if we can't introduce a EWMH kind of thing
for multi DPI aware clients that can do the equivalent of setting
wl_surface::buffer_scale while making it possible to let the compositor know
how popups should be transformed. That is not strictly related to this issue
though.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>