Ignore:
Timestamp:
11/13/2013 04:50:57 PM (10 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
331f609a
Parents:
1c1dffa
Message:

Update to glamor-egl-0.5.1. Fixed text to recommend it for Intel cards as well, thanks to William Harrington.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@12210 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/x7driver-intel.xml

    r1c1dffa r1432921  
    7777      </para>
    7878
     79      <bridgehead renderas="sect5">Recommended</bridgehead>
     80      <para role="Recommended">
     81        <xref linkend="glamor-egl"/>
     82      </para>
     83
    7984      <para condition="html" role="usernotes">
    8085        User Notes: <ulink url="&blfs-wiki;/xorg-intel-driver"/>
     
    109114      </para>
    110115
    111 <screen><userinput>./configure $XORG_CONFIG --enable-kms-only --with-default-accel=sna &amp;&amp;
     116<screen><userinput>./configure $XORG_CONFIG \
     117            --enable-kms-only \
     118            --enable-glamor \
     119            --with-default-accel=sna &amp;&amp;
    112120make</userinput></screen>
    113121
     
    132140
    133141      <para>
     142        <parameter>--enable-glamor</parameter>: This switch enables
     143        new GL-based 2D acceleration. As well as specifying this in the
     144        build, it needs to be enabled at run time (see below).
     145      </para>
     146
     147      <para>
    134148        <parameter>--with-default-accel=sna</parameter>: This switch enables
    135149        SandyBridge New Acceleration method by default.
     
    138152    </sect3>
    139153
     154    <sect3>
     155      <title>Glamor Acceleration</title>
     156
     157      <para>
     158        Glamor is an acceleration library which uses cards' 3D capabilities to
     159        accelerate 2D rendering. Glamor acceleration is not enabled by default.
     160        You have to use a <filename>xorg.conf</filename> file to enable it. To
     161        enable Glamor, create the following
     162        <filename>/etc/X11/xorg.conf</filename> as the
     163        <systemitem class="username">root</systemitem> user:
     164      </para>
     165
     166<screen role="root"><userinput>cat &gt;&gt; /etc/X11/xorg.conf &lt;&lt; "EOF"
     167<literal>Section "Module"
     168        Load "dri2"
     169        Load "glamoregl"
     170EndSection
     171
     172Section "Device"
     173        Identifier "intel"
     174        Driver "intel"
     175        Option "AccelMethod" "glamor"
     176EndSection</literal>
     177EOF</userinput></screen>
     178
     179    </sect3>
    140180    <sect3 role="content">
    141181      <title>Contents</title>
Note: See TracChangeset for help on using the changeset viewer.