diff options
author | Benjamin Otte <otte@redhat.com> | 2018-05-07 16:45:32 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-05-07 16:45:32 +0200 |
commit | 69644993f608d1822f3a27554741ab3fc1bc9685 (patch) | |
tree | bb557da43e83fa305c7b244cea19c30cabb4268a /docs | |
parent | d056be4ea238e6f4371230b1a892ed0100770848 (diff) | |
download | gtk+-69644993f608d1822f3a27554741ab3fc1bc9685.tar.gz |
gsk: Improve GSK_RENDERER behavior
1. Include the broadway renderer (so we can test it properly fails on
Wayland or X11)
2. List all potential renderers, print useful information when Vulkan
is not compiled in instea dof omitting it
3. Improve docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/gtk/running.sgml | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/docs/reference/gtk/running.sgml b/docs/reference/gtk/running.sgml index a001ffec28..90ec4178f6 100644 --- a/docs/reference/gtk/running.sgml +++ b/docs/reference/gtk/running.sgml @@ -465,22 +465,33 @@ nevertheless. <para> If set, selects the GSK renderer to use. The following renderers can - be selected, provided they are included in the GSK libraries you are using: + be selected, provided they are included in the GTK library you are using + and the GDK backend supports them: <variablelist> <varlistentry> - <term>vulkan</term> - <listitem><para>Selects the Vulkan renderer</para></listitem> + <term>help</term> + <listitem><para>Prints information about available options</para></listitem> </varlistentry> <varlistentry> - <term>gl</term> - <listitem><para>Selects the Vulkan renderer</para></listitem> + <term>broadway</term> + <listitem><para>Selects the Broadway-backend specific renderer</para></listitem> </varlistentry> <varlistentry> <term>cairo</term> - <listitem><para>Selects the cairo renderer</para></listitem> + <listitem><para>Selects the fallback Cairo renderer</para></listitem> + </varlistentry> + + <varlistentry> + <term>gl</term> + <listitem><para>Selects the default OpenGL renderer</para></listitem> + </varlistentry> + + <varlistentry> + <term>vulkan</term> + <listitem><para>Selects the Vulkan renderer</para></listitem> </varlistentry> </variablelist> |