<p dir="ltr">Hi Bryce,<br>
Thanks for reviewing!  I'll get the typo changes made and look into canceled vs. cancelled.  More comments below</p>
<p dir="ltr">On Mar 6, 2014 9:38 PM, "Bryce W. Harrington" <<a href="mailto:b.harrington@samsung.com">b.harrington@samsung.com</a>> wrote:<br>
><br>
> On Tue, Feb 25, 2014 at 07:26:33PM -0600, Jason Ekstrand wrote:<br>
> > Signed-off-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br>
> > ---<br>
> >  protocol/fullscreen-shell.xml | 158 ++++++++++++++++++++++++++++++++++++++++++<br>
> >  1 file changed, 158 insertions(+)<br>
> >  create mode 100644 protocol/fullscreen-shell.xml<br>
> ><br>
> > diff --git a/protocol/fullscreen-shell.xml b/protocol/fullscreen-shell.xml<br>
> > new file mode 100644<br>
> > index 0000000..13bdfcf<br>
> > --- /dev/null<br>
> > +++ b/protocol/fullscreen-shell.xml<br>
> > @@ -0,0 +1,158 @@<br>
> > +<protocol name="fullscreen_shell"><br>
> > +  <interface name="wl_fullscreen_shell" version="1"><br>
> > +    <description summary="Displays a single surface per output"><br>
> > +      Displays a single surface per output.<br>
> > +<br>
> > +      This interface provides a mechanism for a single client to display<br>
> > +      simple full-screen surfaces.  While there technically may be multiple<br>
> > +      clients bound to this interface, only one of those clients should be<br>
> > +      shown at a time.<br>
> > +<br>
> > +      To present a surface, the client uses either the present_surface or<br>
> > +      present_surface_for_mode requests.  Presenting a surface takes effect<br>
> > +      on the next wl_surface.commit.  See the individual requests for<br>
> > +      details about scaling and mode switches.<br>
> > +<br>
> > +      The client can have at most one surface per output at any time.<br>
> > +      Requesting a surface be presented on an output that already has a<br>
> > +      surface replaces the previously presented surface.  Presenting a null<br>
> > +      surface removes its content and effectively disables the output.<br>
> > +      Exactly what happens when an output is "disabled" is<br>
> > +      compositor-specific.  The same surface may be presented multiple<br>
><br>
> presented to multiple<br>
><br>
> > +      outputs simultaneously.<br>
> > +<br>
> > +      Once a surface is presented on an output, it stays on that output<br>
> > +      until either the client removes it or the compositor destroys the<br>
> > +      output.  This way, the client can update the output's contents by<br>
> > +      simply attaching a new buffer.<br>
> > +    </description><br>
> > +<br>
> > +    <request name="release" type="destructor"><br>
> > +      <description summary="release the wl_fullscreen_shell interface"><br>
> > +             Release the binding from the wl_fullscreen_shell interface<br>
> > +<br>
> > +     This destroys the server-side object and frees this binding.  If<br>
> > +     the client binds to wl_fullscreen_shell multiple times, it may wish<br>
> > +     to free some of those bindings.<br>
> > +      </description><br>
> > +    </request><br>
> > +<br>
> > +    <enum name="present_method"><br>
> > +      <description summary="different method to set the surface fullscreen"><br>
> > +     Hints to indicate to the compositor how to deal with a conflict<br>
> > +     between the dimensions of the surface and the dimensions of the<br>
> > +     output. The compositor is free to ignore this parameter.<br>
> > +      </description><br>
> > +      <entry name="default" value="0" summary="no preference, apply default policy"/><br>
> > +      <entry name="center" value="1" summary="center the surface on the output"/><br>
> > +      <entry name="zoom" value="2" summary="scale the surface, preserving aspect ratio, to the largest size that will fit on the output" /><br>
> > +      <entry name="zoom_crop" value="3" summary="scale the surface, preserving aspect ratio, to fully fill the output cropping if needed" /><br>
> > +      <entry name="stretch" value="4" summary="scale the surface to the size of the output ignoring aspect ratio" /><br>
> > +    </enum><br>
> > +<br>
> > +    <request name="present_surface"><br>
> > +      <description summary="present surface for display"><br>
> > +     Present a surface on the given output.<br>
> > +<br>
> > +     If the output is null, the compositor will present the surface on<br>
> > +     whatever display (or displays) it thinks best.  In particular, this<br>
> > +     may replace any or all surfaces currently presented so it should<br>
> > +     not be used in combination with placing surfaces on specific<br>
> > +     outputs.<br>
> > +<br>
> > +     The method parameter is a hint to the compositor for how the surface<br>
> > +     is to be presented.  In particular, it tells the compostior how to<br>
> > +     handle a size mismatch between the presented surface and the<br>
> > +     output.  The compositor is free to ignore this parameter.<br>
> > +<br>
> > +     The "zoom", "zoom_crop", and "stretch" methods imply a scaling<br>
> > +     operation on the surface.  This will override any kind of output<br>
> > +     scaling, so the buffer_scale property of the surface is effectively<br>
> > +     ignored.<br>
> > +      </description><br>
> > +      <arg name="surface" type="object" interface="wl_surface" allow-null="true"/><br>
> > +      <arg name="method" type="uint"/><br>
> > +      <arg name="output" type="object" interface="wl_output" allow-null="true"/><br>
> > +    </request><br>
> > +<br>
> > +    <request name="present_surface_for_mode"><br>
> > +      <description summary="present surface for display at a particular mode"><br>
> > +     Presents a surface on the given output for a particular mode.<br>
> > +<br>
> > +     If the current size of the output differs from that of the surface,<br>
> > +     the compositor will attempt to change the size of the output to<br>
> > +     match the surface.  The result of the mode-swith operation will be<br>
><br>
> mode-switch<br>
><br>
> > +     returned via the provided wl_fullscreen_shell_mode_feedback object.<br>
> > +<br>
> > +     If the current output mode matches the one requested or if the<br>
> > +     compositor successfully switches the mode to match the surface,<br>
> > +     then the mode_successfull event will be sent and the output will<br>
><br>
> mode_successful event<br>
><br>
> > +     contain the contents of the given surface.  If the compositor<br>
> > +     cannot match the output size to the surface size, the mode_failed<br>
> > +     will be sent and the output will contain the contents of the<br>
> > +     previously presented surface (if any).  If another surface is<br>
> > +     presented on the given output before either of these has a chance<br>
> > +     to happen, the present_canceled event will be sent.<br>
><br>
> present_cancelled<br>
><br>
> Grepping weston for 'canceled' vs. 'cancelled' seems to indicate the<br>
> latter spelling is preferred.<br>
><br>
> > +     If the size of the presented surface changes, the resulting output<br>
> > +     is undefined.  The compositor may attempt to change the output mode<br>
> > +     to compensate.  However, there is no guarantee that a suitable mode<br>
> > +     will be found and the client has no way to be notified of success<br>
> > +     or failure.<br>
><br>
> Probably a stupid question but could the presented surface be locked to<br>
> prevent it from changing size?</p>
<p dir="ltr">Not really.  The client simply attaches buffers of some size or another and the server has to take what the client gives it.  That patagraph is intended expressly to address this by telling the client "Don't do that!" under threat of undefined results.</p>

<p dir="ltr">><br>
> > +     The framerate parameter specifies the target framerate for the<br>
> > +     output.  The compositor is free to ignore this parameter.  A value<br>
> > +     of 0 indicates that the client has no preference.<br>
><br>
> This doesn't actually define what the framerate parameter does.  Does it<br>
> do something if the framerate drops too low?  Or does it cap it to not<br>
> go above a certain level?</p>
<p dir="ltr">The output mode is given by three parameters: width, height, and framerate.  The framerate should be given in mHz (same as in wl_output.mode) but maybe I should specify that.  If the compositor states that the given output supports, for instance 1024x768@60Hz and 1024x768@50Hz, this lets the client specify which it would like.  In most cases, the client won't care which is why I have the 0 option.  However, providing a framerate option allows the client more-or-less full control over the output mode.</p>

<p dir="ltr">><br>
> > +     If the surface has a buffer_scale greater than 1, the compositor<br>
> > +     may choose a mode that matches either the buffer size or the<br>
> > +     surface size.  In either case, the surface will fill the output.<br>
><br>
> This paragraph is a bit confusing.  Is buffer_scale a scaling factor?</p>
<p dir="ltr">Wayland provides an integer scale parameter for each output that tells the client that the given output is actually scaled down.  This is for HiDPI displays where you may want 2 or 3 physical pixels per logical pixel.  If the output has a scale factor of 3, that means that every surface on that output will be scaled up by a factor of 3.  The buffer_scale option allows the client to compensate in the same way as the buffer_transform option allows it to compensate for a rotated output.  If a surface has a buffer_scale of 3 and a 600x900 buffer, then the size of the surface is only 200x300 but it will be pixel-for-pixel exact on the output that's scaled by 3.</p>

<p dir="ltr">The problem here is what to do with the buffer_scale factor.  In the example above, the client is providing a 600x900 buffer but the surface is only 200x300.  Which size should the compositor make the output?  This gets even stickier because the output modes provided by wl_output are given in physical pixels without any transform or scale.  As given, I chose to explicitly not solve this problem and let the compositor choose.  In practice, I expect that most compositors won't provide any scale factor on the output and the client just provides the surface size it wants.</p>

<p dir="ltr">Perhaps this isn't the best option.  Would it be better defined if we just stated that the compositor will try to match the output size to the surface size?  Then warn clients that the wl_output.scale factor may still get applied.  This may be a better option since the client will have to handle the tramsform in a similar way.</p>

<p dir="ltr">Ultimately, if the client wants to control modesetting it should be either a) using the same size and transform as the output or b) providing a surface in output-space (after having transformed the mode from the compositor) and letting the compositor transform/scale it.  I'm not really sure what's best to do here honestly.  Suggestions are appreciated.  I'll think on it more.</p>

<p dir="ltr">><br>
> > +      </description><br>
> > +      <arg name="surface" type="object" interface="wl_surface"/><br>
> > +      <arg name="output" type="object" interface="wl_output"/><br>
> > +      <arg name="framerate" type="int"/><br>
> > +      <arg name="feedback" type="new_id" interface="wl_fullscreen_shell_mode_feedback"/><br>
> > +    </request><br>
> > +<br>
> > +    <enum name="error"><br>
> > +      <description summary="wl_fullscreen_shell error values"><br>
> > +     These errors can be emitted in response to wl_fullscreen_shell requests<br>
> > +      </description><br>
> > +      <entry name="invalid_method" value="0" summary="present_method is not known"/><br>
> > +    </enum><br>
> > +  </interface><br>
> > +<br>
> > +  <interface name="wl_fullscreen_shell_mode_feedback" version="1"><br>
> > +    <event name="mode_successful"><br>
> > +      <description summary="mode switch succeeded"><br>
> > +     This event indicates that the attempted mode switch operation was<br>
> > +     successful.  A surface of the size requested in the mode switch<br>
> > +     will fill the output without scaling.<br>
> > +<br>
> > +     Upon recieving this event, the client should destroy the<br>
> receiving<br>
><br>
> > +     wl_fullscreen_shell_mode_feedback object.<br>
> > +      </description><br>
> > +    </event><br>
> > +    <event name="mode_failed"><br>
> > +      <description summary="mode switch failed"><br>
> > +     This event indicates that the attempted mode switch operation<br>
> > +     failed. This may be because the requested output mode is not<br>
> > +     possible or it may mean that the compositor does not want to allow<br>
> > +     mode switches at this time.<br>
><br>
> Would it be worth returning these two failure modes as distinct events?<br>
> Might help client developers in debugging if nothing else.<br>
><br>
> If lets say a game client wanted to do a mode change, would it make<br>
> sense for them to do a series of present_surface_for_mode calls and<br>
> keep trying different modes while they receive mode_failed events?<br>
> Or is there a way for them to query for allowed modes that they can<br>
> select from?</p>
<p dir="ltr">Ok, first off games aren't really the intended clientel.  I don't think this is really an issue.  Allow me to elaborate.  I expect that the compositor will have one of two basic modes of operation.  First, is to allow you to set any mode at all.  This is likely to be the case for streaming/recording compositors where there is no physical output.  Second is that it has some list of modes and allows you to select one.  In the first case, it should always succeed unless the compositor has some rule such as "you can only set this once".  In the second case, you can go ahead and try to set whatever you want, but it might not work.  However, if it's an advertised mode and the transform and scale match (see above) you should expect it to work.</p>

<p dir="ltr">If a client wants to run at some exotic resolution, I expect it to try that and, if it fails, pick the best resolution from the advertised modes and then try that.</p>
<p dir="ltr">I still want to leave the compositor a bit of a way out if there's a problem.  Perhaps "does not allow mode switches at this time" is a bad way to put it.</p>
<p dir="ltr">Thanks,<br>
-- Jason Ekstrand</p>
<p dir="ltr">><br>
> > +<br>
> > +     Upon recieving this event, the client should destroy the<br>
> receiving<br>
><br>
> > +     wl_fullscreen_shell_mode_feedback object.<br>
> > +      </description><br>
> > +    </event><br>
> > +    <event name="present_canceled"><br>
> present_cancelled<br>
><br>
> > +      <description summary="mode switch canceled"><br>
> mode switch cancelled<br>
><br>
> > +     This event indicates that the attempted mode switch operation was<br>
> > +     canceled.  Most likely this is because the client requested a<br>
> cancelled<br>
><br>
> > +     second mode switch before the first one completed.<br>
> > +<br>
> > +     Upon recieving this event, the client should destroy the<br>
> receiving<br>
><br>
> > +     wl_fullscreen_shell_mode_feedback object.<br>
> > +      </description><br>
> > +    </event><br>
> > +  </interface><br>
> > +</protocol><br>
> > --<br>
> > 1.8.5.3<br>
> ><br>
> > _______________________________________________<br>
> > wayland-devel mailing list<br>
> > <a href="mailto:wayland-devel@lists.freedesktop.org">wayland-devel@lists.freedesktop.org</a><br>
> > <a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel">http://lists.freedesktop.org/mailman/listinfo/wayland-devel</a><br>
><br>
> Apart from a few typos here and there, the docs are very coherent and<br>
> understandable.<br>
><br>
> Reviewed-by: Bryce Harrington <<a href="mailto:b.harrington@samsung.com">b.harrington@samsung.com</a>><br>
><br>
> Bryce</p>