dix: Remove refs to mi backing store from docs

Remove any reference to mibstore.h and miInitializeBackingStore() from
the documentation.

Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Daniel Martin 2012-09-06 00:38:25 +02:00 committed by Keith Packard
parent 76d8739b1f
commit 08a9ed2524
2 changed files with 2 additions and 30 deletions

View File

@ -1214,14 +1214,6 @@ function pointers from the other layer are stored in a screen private
area. Common functions to wrap are CloseScreen() and SaveScreen(). area. Common functions to wrap are CloseScreen() and SaveScreen().
</para></listitem></varlistentry> </para></listitem></varlistentry>
<varlistentry>
<term>miInitializeBackingStore()</term>
<listitem>
<para>This MI function initializes the
screen's backing storage functions, which are used to save areas of
windows that are currently covered by other windows.
</para></listitem></varlistentry>
<varlistentry> <varlistentry>
<term>miDCInitialize()</term> <term>miDCInitialize()</term>
<listitem> <listitem>
@ -1320,8 +1312,8 @@ initialize each of its screens.
<para>Xnest's ScreenInit() function is called <para>Xnest's ScreenInit() function is called
xnestOpenScreen(). This function initializes its screen's depth and xnestOpenScreen(). This function initializes its screen's depth and
visual information, and then calls miScreenInit() to set up the default visual information, and then calls miScreenInit() to set up the default
screen functions. It then calls miInitializeBackingStore() and screen functions. It then calls miDCInitialize() to initialize the
miDCInitialize() to initialize backing store and the software cursor. software cursor.
Finally, it replaces many of the screen functions with its own Finally, it replaces many of the screen functions with its own
functions that repackage and send the requests to the real X server to functions that repackage and send the requests to the real X server to
which Xnest is attached. which Xnest is attached.

View File

@ -3560,13 +3560,6 @@ The following include files are typically required by video drivers:
</filename></literallayout> </filename></literallayout>
</para> </para>
<para>
All drivers implementing backing store need this:
<literallayout><filename>
"mibstore.h"
</filename></literallayout>
</para>
<para> <para>
All drivers using the mi colourmap code need this: All drivers using the mi colourmap code need this:
<literallayout><filename> <literallayout><filename>
@ -8091,13 +8084,6 @@ visible symbols.
</filename></literallayout> </filename></literallayout>
</para> </para>
<para>
All drivers implementing backing store need this:
<literallayout><filename>
"mibstore.h"
</filename></literallayout>
</para>
<para> <para>
All drivers using the mi colourmap code need this: All drivers using the mi colourmap code need this:
<literallayout><filename> <literallayout><filename>
@ -9102,12 +9088,6 @@ ZZZScreenInit(ScreenPtr pScreen, int argc, char **argv)
pScrn-&gt;displayWidth, pBankInfo)) pScrn-&gt;displayWidth, pBankInfo))
return FALSE; return FALSE;
/*
* If backing store is to be supported (as is usually the case),
* initialise it.
*/
miInitializeBackingStore(pScreen);
/* /*
* Set initial black &amp; white colourmap indices. * Set initial black &amp; white colourmap indices.
*/ */