dbelib.xml revision a5602400
1<?xml version="1.0" encoding="UTF-8" ?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3                   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
4
5
6<!-- lifted from troff+ms+XMan by doclifter -->
7<book id="dbelib">
8
9<bookinfo>
10   <title>Double Buffer Extension Library</title>
11   <subtitle>X Consortium Standard</subtitle>
12   <!-- <releaseinfo>X Version 11, Release 6.4</releaseinfo> -->
13   <authorgroup>
14      <author>
15         <firstname>Ian</firstname><surname>Elliot</surname>
16      </author>
17   </authorgroup>
18   <othercredit>
19      <firstname>Davide</firstname><surname>Wiggins</surname>
20   </othercredit>
21   <corpname>Hewlett-Packard Company</corpname>
22   <copyright><year>1989</year><holder>X Consortium, Inc and Digital Equipment Corporation</holder></copyright>
23   <copyright><year>1992</year><holder>X Consortium, Inc and Intergraph Corporation</holder></copyright>
24   <copyright><year>1993</year><holder>X Consortium, Inc and Silicon Graphics, Inc.</holder></copyright>
25   <copyright><year>1994</year><holder>X Consortium, Inc and Hewlett-Packard Company</holder></copyright>
26   <copyright><year>1995</year><holder>X Consortium, Inc and Hewlett-Packard Company</holder></copyright>
27   <releaseinfo>Version 1.0</releaseinfo>
28   <affiliation><orgname>X Consortium</orgname></affiliation>
29   <productnumber>X Version 11, Release 7</productnumber>
30
31<legalnotice>
32<para>
33Permission to use, copy, modify, and distribute this documentation for any
34purpose and without fee is hereby granted, provided that the above copyright
35notice and this permission notice appear in all copies. Digital Equipment
36Corporation, Intergraph Corporation, Silicon Graphics, Hewlett-Packard, and
37the X Consortium make no representations about the suitability for any
38purpose of the information in this document. This documentation is provided
39"as is" without express or implied warranty.
40</para>
41
42</legalnotice>
43
44</bookinfo>
45
46<chapter id="introduction">
47<title>Introduction</title>
48<para>
49The Double Buffer Extension (DBE) provides a standard way to utilize
50double-buffering within the framework of the X Window System.
51Double-buffering uses two buffers, called front and back, which hold images.
52The front buffer is visible to the user; the back buffer is not. Successive
53frames of an animation are rendered into the back buffer while the previously
54rendered frame is displayed in the front buffer. When a new frame is ready,
55the back and front buffers swap roles, making the new frame visible. Ideally,
56this exchange appears to happen instantaneously to the user and with no
57visual artifacts. Thus, only completely rendered images are presented to the
58user, and they remain visible during the entire time it takes to render a new
59frame. The result is a flicker-free animation.
60</para>
61
62</chapter>
63
64<chapter id="goals">
65<title>Goals</title>
66
67<para>
68This extension should enable clients to:
69</para>
70<itemizedlist>
71  <listitem>
72    <para>
73Allocate and deallocate double-buffering for a window.
74    </para>
75  </listitem>
76  <listitem>
77    <para>
78Draw to and read from the front and back buffers associated with a window.
79    </para>
80  </listitem>
81  <listitem>
82    <para>
83Swap the front and back buffers associated with a window.
84    </para>
85  </listitem>
86  <listitem>
87    <para>
88Specify a wide range of actions to be taken when a window is swapped.
89This includes explicit, simple swap actions (defined below), and more
90complex actions (for example, clearing ancillary buffers) that can be put
91together within explicit "begin" and "end" requests (defined below).
92    </para>
93  </listitem>
94  <listitem>
95    <para>
96Request that the front and back buffers associated with multiple
97double-buffered windows be swapped simultaneously.
98    </para>
99  </listitem>
100</itemizedlist>
101
102<para>
103In addition, the extension should:
104</para>
105<itemizedlist>
106  <listitem>
107    <para>
108Allow multiple clients to use double-buffering on the same window.
109    </para>
110  </listitem>
111  <listitem>
112    <para>
113Support a range of implementation methods that can capitalize on
114existing hardware features.
115    </para>
116  </listitem>
117  <listitem>
118    <para>
119Add no new event types.
120    </para>
121  </listitem>
122  <listitem>
123    <para>
124Be reasonably easy to integrate with a variety of direct graphics
125hardware access (DGHA) architectures.
126    </para>
127  </listitem>
128</itemizedlist>
129
130</chapter>
131
132<chapter id="concepts">
133<title>Concepts</title>
134<para>
135Normal windows are created using the core CreateWindow request, which
136allocates a set of window attributes and, for InputOutput windows, a front
137buffer, into which an image can be drawn. The contents of this buffer will be
138displayed when the window is visible.
139</para>
140<para>
141This extension enables applications to use double-buffering with a window.
142This involves creating a second buffer, called a back buffer, and associating
143one or more back buffer names (XIDs) with the window for use when referring
144to (that is, drawing to or reading from) the window’s back buffer. The back
145buffer name is a DRAWABLE of type BACKBUFFER.
146</para>
147<para>
148DBE provides a relative double-buffering model. One XID, the window,
149always refers to the front buffer. One or more other XIDs, the back buffer
150names, always refer to the back buffer. After a buffer swap, the window
151continues to refer to the (new) front buffer, and the back buffer name
152continues to refer to the (new) back buffer. Thus, applications and toolkits
153that want to just render to the back buffer always use the back buffer name
154for all drawing requests to the window. Portions of an application that want
155to render to the front buffer always use the window XID for all drawing
156requests to the window.
157</para>
158<para>
159Multiple clients and toolkits can all use double-buffering on the same window.
160DBE does not provide a request for querying whether a window has
161double-buffering support, and if so, what the back buffer name is. Given the
162asynchronous nature of the X Window System, this would cause race
163conditions. Instead, DBE allows multiple back buffer names to exist for the
164same window; they all refer to the same physical back buffer. The first time a
165back buffer name is allocated for a window, the window becomes
166double-buffered and the back buffer name is associated with the window.
167Subsequently, the window already is a double-buffered window, and nothing
168about the window changes when a new back buffer name is allocated, except
169that the new back buffer name is associated with the window. The window
170remains double-buffered until either the window is destroyed or until all of the
171back buffer names for the window are deallocated.
172</para>
173<para>
174In general, both the front and back buffers are treated the same.
175particular, here are some important characteristics:
176</para>
177<itemizedlist>
178  <listitem>
179    <para>
180Only one buffer per window can be visible at a time (the front buffer).
181    </para>
182  </listitem>
183  <listitem>
184    <para>
185Both buffers associated with a window have the same visual type, depth,
186width, height, and shape as the window.
187    </para>
188  </listitem>
189  <listitem>
190    <para>
191Both buffers associated with a window are "visible" (or "obscured") in
192the same way. When an Expose event is generated for a window, both
193buffers should be considered to be damaged in the exposed area.
194Damage that occurs to either buffer will result in an Expose event on
195the window. When a double-buffered window is exposed, both buffers
196are tiled with the window background, exactly as stated by the core
197protocol. Even though the back buffer is not visible, terms such as
198obscure apply to the back buffer as well as to the front buffer.
199    </para>
200  </listitem>
201  <listitem>
202    <para>
203It is acceptable at any time to pass a BACKBUFFER in any request,
204notably any core or extension drawing request, that expects a
205DRAWABLE.  This enables an application to draw directly into
206BACKBUFFERs in the same fashion as it would draw into any other
207DRAWABLE.
208    </para>
209  </listitem>
210  <listitem>
211    <para>
212It is an error (Window) to pass a BACKBUFFER in a core request that
213expects a Window.
214    </para>
215  </listitem>
216  <listitem>
217    <para>
218A BACKBUFFER will never be sent by core X in a reply, event, or
219error where a Window is specified.
220    </para>
221  </listitem>
222  <listitem>
223    <para>
224If core X11 backing-store and save-under applies to a double-buffered
225window, it applies to both buffers equally.
226    </para>
227  </listitem>
228  <listitem>
229    <para>
230If the core ClearArea request is executed on a double-buffered window,
231the same area in both the front and back buffers is cleared.
232    </para>
233  </listitem>
234</itemizedlist>
235
236<para>
237The effect of passing a window to a request that accepts a
238<function>DRAWABLE</function> is
239unchanged by this extension. The window and front buffer are synonomous
240with each other. This includes obeying the <function>GetImage</function>
241semantics and the
242subwindow-mode semantics if a core graphics context is involved. Regardless
243of whether the window was explicitly passed in a
244<function>GetImage</function> request, or
245implicitly referenced (that is, one of the window’s ancestors was passed in the
246request), the front (that is, visible) buffer is always referenced. Thus,
247DBE-naive screen dump clients will always get the front buffer.
248<function>GetImage</function> on
249a back buffer returns undefined image contents for any obscured regions of the
250back buffer that fall within the image.
251</para>
252<para>
253Drawing to a back buffer always uses the clip region that would be used to
254draw to the front buffer with a GC subwindow-mode of
255<function>ClipByChildren</function>. If
256an ancestor of a double-buffered window is drawn to with a core GC having a
257subwindow-mode of IncludeInferiors, the effect on the double-buffered
258window’s back buffer depends on the depth of the double-buffered window
259and the ancestor. If the depths are the same, the contents of the back buffer
260of the double-buffered window are not changed. If the depths are different,
261the contents of the back buffer of the double-buffered window are undefined
262for the pixels that the <function>IncludeInferiors</function> drawing touched.
263</para>
264
265
266<para>
267DBE adds no new events. DBE does not extend the semantics of any existing
268events with the exception of adding a new DRAWABLE type called
269BACKBUFFER. If events, replies, or errors that contain a DRAWABLE (for
270example, <function>GraphicsExpose</function>) are generated in response to
271a request, the
272DRAWABLE returned will be the one specified in the request.
273</para>
274<para>
275DBE advertises which visuals support double-buffering.
276</para>
277<para>
278DBE does not include any timing or synchronization facilities. Applications
279that need such facilities (for example, to maintain a constant frame rate)
280should investigate the Synchronization Extension, an X Consortium standard.
281</para>
282
283<sect1 id="window_management_operations">
284<title>Window Management Operations</title>
285
286<para>
287The basic philosophy of DBE is that both buffers are treated the same by core
288X window management operations.
289</para>
290<para>
291When the core <function>DestroyWindow</function> is executed on a
292double-buffered window, both buffers associated with the window are
293destroyed, and all back buffer names associated with the window are freed.
294</para>
295<para>
296If the core <function>ConfigureWindow</function> request changes the size
297of a window, both buffers assume the new size. If the window’s size
298increases, the effect on the buffers depends on whether the implementation
299honors bit gravity for buffers.
300If bit gravity is implemented, then the contents of both buffers are moved in
301accordance with the window’s bit gravity (see the core
302<function>ConfigureWindow</function>
303request), and the remaining areas are tiled with the window background. If
304bit gravity is not implemented, then the entire unobscured region of both
305buffers is tiled with the window background. In either case,
306<function>Expose</function> events are
307generated for the region that is tiled with the window background.
308If the core GetGeometry request is executed on a BACKBUFFER, the
309returned x, y, and border-width will be zero.
310</para>
311<para>
312If the Shape extension
313<function>ShapeRectangles</function>,
314<function>ShapeMask</function>,
315<function>ShapeCombine</function>, or
316<function>ShapeOffset</function>
317request is executed on a double-buffered window, both buffers
318are reshaped to match the new window shape. The region difference is the
319following:
320</para>
321
322<literallayout remap='Ds'>
323        D = newshape − oldshape
324</literallayout>
325
326<para>
327It is tiled with the window background in both buffers, and
328<function>Expose</function>
329events are generated for D.
330</para>
331
332</sect1>
333
334<sect1 id="complex_swap_actions">
335<title>Complex Swap Actions</title>
336<para>
337DBE has no explicit knowledge of ancillary buffers (for example, depth buffers
338or alpha buffers), and only has a limited set of defined swap actions. Some
339applications may need a richer set of swap actions than DBE provides. Some
340DBE implementations have knowledge of ancillary buffers, and/or can provide
341a rich set of swap actions. Instead of continually extending DBE to increase
342its set of swap actions, DBE provides a flexible "idiom" mechanism. If an
343application’s needs are served by the defined swap actions, it should use them;
344otherwise, it should use the following method of expressing a complex swap
345action as an idiom. Following this policy will ensure the best possible
346performance across a wide variety of implementations.
347</para>
348<para>
349As suggested by the term "idiom," a complex swap action should be expressed
350as a group/series of requests. Taken together, this group of requests may be
351combined into an atomic operation by the implementation, in order to
352maximize performance. The set of idioms actually recognized for optimization
353is implementation dependent.
354To help with idiom expression and
355interpretation, an idiom must be surrounded by two protocol requests:
356<function>DBEBeginIdiom</function> and <function>DBEEndIdiom</function>.
357Unless this begin-end pair surrounds the idiom, it may not be recognized
358by a given implementation, and performance will suffer.
359</para>
360<para>
361For example, if an application wants to swap buffers for two windows, and use
362core X to clear only certain planes of the back buffers, the application would
363issue the following protocol requests as a group, and in the following order:
364</para>
365
366<itemizedlist>
367  <listitem>
368    <para>
369<function>DBEBeginIdiom</function> request.
370    </para>
371  </listitem>
372  <listitem>
373    <para>
374<function>DBESwapBuffers</function> request with XIDs for two windows, each of which uses
375a swap action of Untouched.
376    </para>
377  </listitem>
378  <listitem>
379    <para>
380Core X <function>PolyFillRectangle</function> request to the back buffer of one window.
381    </para>
382  </listitem>
383  <listitem>
384    <para>
385Core X <function>PolyFillRectangle</function> request to the back buffer of the other
386window.
387    </para>
388  </listitem>
389  <listitem>
390    <para>
391<function>DBEEndIdiom</function> request.
392    </para>
393  </listitem>
394</itemizedlist>
395
396<para>
397The <function>DBEBeginIdiom</function> and <function>DBEEndIdiom</function>
398requests do not perform any actions
399themselves. They are treated as markers by implementations that can
400combine certain groups/series of requests as idioms, and are ignored by other
401implementations or for nonrecognized groups/series of requests. If these
402requests are sent out of order, or are mismatched, no errors are sent, and the
403requests are executed as usual, though performance may suffer.
404</para>
405
406<para>
407
408An idiom need not include a <function>DBESwapBuffers</function> request.
409For example, if a swap action of <function>Copied</function> is desired,
410but only some of the planes should be copied, a core X
411<function>CopyArea</function> request may be used instead of
412<function>DBESwapBuffers</function>. If
413<function>DBESwapBuffers</function> is included in an idiom, it should
414immediately follow the
415<function>DBEBeginIdiom</function> request. Also, when the
416<function>DBESwapBuffers</function> is included in an idiom, that
417request’s swap action will still be valid, and if the swap action
418might overlap with another request, then the final result of the idiom must be
419as if the separate requests were executed serially. For example, if the
420specified swap action is <function>Untouched</function>, and if a
421<function>PolyFillRectangle</function> using a client clip
422rectangle is done to the window’s back buffer after the
423<function>DBESwapBuffers</function> request, then the contents of the new
424back buffer (after the idiom) will be the
425same as if the idiom was not recognized by the implementation.
426</para>
427<para>
428It is highly recommended that Application Programming Interface (API)
429providers define, and application developers use, "convenience" functions that
430allow client applications to call one procedure that encapsulates common
431idioms. These functions will generate the
432<function>DBEBeginIdiom</function> request, the idiom
433requests, and <function>DBEEndIdiom</function> request. Usage of these
434functions will ensure best possible performance across a wide
435variety of implementations.
436</para>
437
438</sect1>
439</chapter>
440
441<chapter id="c_language_bindings">
442<title>C Language Binding</title>
443<para>
444All identifier The header for this extension is &lt;X11/extensions/Xdbe.h&gt;.
445names provided by this header begin with Xdbe.
446</para>
447
448<sect1 id="types">
449<title>Types</title>
450
451<para>
452The type <function>XdbeBackBuffer</function> is a <function>Drawable</function>.
453</para>
454
455<para>
456The type <function>XdbeSwapAction</function> can be one of the constants
457<function>XdbeUndefined</function>,
458<function>XdbeBackground</function>,
459<function>XdbeUntouched</function>, or
460<function>XdbeCopied</function>.
461</para>
462
463</sect1>
464
465<sect1 id="c_functions">
466<title>C Functions</title>
467<para>
468The C functions provide direct access to the protocol and add no additional
469semantics. For complete details on the effects of these functions, refer to the
470appropriate protocol request, which can be derived by replacing Xdbe at the
471start of the function name with DBE. All functions that have return type
472<function>Status</function> will return nonzero for success and
473zero for failure.
474</para>
475
476<funcsynopsis>
477<funcprototype>
478  <funcdef>Status <function>XdbeQueryExtension</function></funcdef>
479    <paramdef>Display <parameter> *dpy</parameter></paramdef>
480    <paramdef>int <parameter> *major_version_return</parameter></paramdef>
481    <paramdef>int <parameter> *minor_version_return</parameter></paramdef>
482</funcprototype>
483</funcsynopsis>
484
485<para>
486<function>XdbeQueryExtension</function> sets major version return and minor
487version return to the major and minor DBE protocol version supported by
488the server. If the DBE library is compatible with the version returned by
489the server, it returns nonzero. If dpy does not support the DBE extension,
490or if there was an error during communication with the server, or if the
491server and library protocol versions are incompatible, it returns zero.
492No other Xdbe functions may be called before this function. If a client
493violates this rule, the effects of all subsequent Xdbe calls that it makes
494are undefined.
495</para>
496
497<funcsynopsis>
498<funcprototype>
499  <funcdef>XdbeScreenVisualInfo *<function>XdbeGetVisualInfo</function></funcdef>
500    <paramdef>Display <parameter> *dpy</parameter></paramdef>
501    <paramdef>Drawable <parameter> *screen_specifiers</parameter></paramdef>
502    <paramdef>int <parameter> *num_screens</parameter></paramdef>
503</funcprototype>
504</funcsynopsis>
505
506<para>
507
508<function>XdbeGetVisualInfo</function> returns information about which
509visuals support double buffering. The argument num_screens specifies how
510many elements there are in the screen_specifiers list. Each drawable in
511screen_specifiers designates a screen for which the supported visuals are
512being requested. If num_screens is zero, information for all screens is
513requested. In this case, upon return from this function, num_screens will
514be set to the number of screens that were found. If an error occurs,
515this function returns NULL; otherwise, it returns a pointer to a list of
516<function>XdbeScreenVisualInfo</function>
517structures of length num_screens.  The nth element in the returned list
518corresponds to the nth drawable in the screen_specifiers list, unless
519
520element in the returned list corresponds to the nth screen of the server,
521starting with screen zero.
522</para>
523
524
525<para>
526The XdbeScreenVisualInfo structure has the following fields:
527</para>
528<literallayout remap='Ds'>
529int                     count      number of items in visinfo
530XdbeVisualInfo*    visinfo     list of visuals and depths for this screen
531</literallayout>
532
533<para>
534The <function>XdbeVisualInfo</function> structure has the following fields:
535</para>
536
537<literallayout remap='Ds'>
538VisualID         visual    one visual ID that supports double-buffering
539int              depth     depth of visual in bits
540int              perflevel  performance level of visual
541</literallayout>
542
543
544<funcsynopsis>
545<funcprototype>
546  <funcdef>void XdbeFreeVisualInfo <function>XdbeGetVisualInfo</function></funcdef>
547    <paramdef>XdbeScreenVisualInfo <parameter> *visual_info</parameter></paramdef>
548</funcprototype>
549</funcsynopsis>
550
551<para>
552<function>XdbeFreeVisualInfo</function> frees the list of
553<function>XdbeScreenVisualInfo</function> returned by
554<function>XdbeGetVisualInfo</function>.
555</para>
556
557
558<funcsynopsis>
559<funcprototype>
560  <funcdef>XdbeBackBuffer <function>XdbeAllocateBackBufferName</function></funcdef>
561    <paramdef>Display <parameter> *dpy</parameter></paramdef>
562    <paramdef>Window <parameter> *window</parameter></paramdef>
563    <paramdef>XdbeSwapAction <parameter> swap_action</parameter></paramdef>
564</funcprototype>
565</funcsynopsis>
566
567
568<para>
569<function>XdbeAllocateBackBufferName</function> returns a drawable ID used
570to refer to the back buffer of the specified window. The swap_action is a
571hint to indicate the swap_action that will likely be used in subsequent
572calls to <function>XdbeSwapBuffers</function>.  The actual swap_action
573used in calls to <function>XdbeSwapBuffers</function> does not have to be
574the same as the swap_action passed to this function, though clients are
575encouraged to provide accurate information whenever possible.
576</para>
577
578<funcsynopsis>
579<funcprototype>
580  <funcdef>Status <function>XdbeDeallocateBackBufferName</function></funcdef>
581    <paramdef>Display <parameter> *dpy</parameter></paramdef>
582    <paramdef>XdbeBackBuffer <parameter> buffer</parameter></paramdef>
583</funcprototype>
584</funcsynopsis>
585
586<para>
587<function>XdbeDeallocateBackBufferName</function> frees the specified
588drawable ID, buffer, that was obtained via
589<function>XdbeAllocateBackBufferName</function>. The buffer must be a valid
590name for the back buffer of a window, or an
591<function>XdbeBadBuffer</function> error results.
592</para>
593
594<funcsynopsis>
595<funcprototype>
596  <funcdef>Status <function>XdbeSwapBuffers</function></funcdef>
597    <paramdef>Display <parameter> *dpy</parameter></paramdef>
598    <paramdef>XdbeSwapInfo <parameter> *swap_info</parameter></paramdef>
599    <paramdef>int <parameter> num_windows</parameter></paramdef>
600</funcprototype>
601</funcsynopsis>
602
603<para>
604<function>XdbeSwapBuffers</function> swaps the front and back buffers
605for a list of windows. The argument num_windows specifies how many windows
606are to have their buffers swapped; it is the number of elements in the
607swap_info array. The argument swap_info specifies the information needed
608per window to do the swap.
609</para>
610<para>
611The XdbeSwapInfo structure has the following fields:
612</para>
613
614<literallayout remap='Ds'>
615Window              swap_window    window for which to swap buffers
616XdbeSwapAction      swap_action    swap action to use for this swap window
617</literallayout>
618
619<funcsynopsis>
620<funcprototype>
621  <funcdef>Status <function>XdbeBeginIdiom</function></funcdef>
622    <paramdef>Display <parameter> *dpy</parameter></paramdef>
623</funcprototype>
624</funcsynopsis>
625
626<para>
627<function>XdbeBeginIdiom</function> marks the beginning of an idiom
628sequence. See
629<link linkend="complex_swap_actions">
630<xref linkend="complex_swap_actions"></xref></link>
631for a complete discussion of idioms.
632</para>
633
634<funcsynopsis>
635<funcprototype>
636  <funcdef>Status <function>XdbeEndIdiom</function></funcdef>
637    <paramdef>Display <parameter> *dpy</parameter></paramdef>
638</funcprototype>
639</funcsynopsis>
640
641<para>
642<function>XdbeEndIdiom</function> marks the end of an idiom sequence.
643</para>
644
645<funcsynopsis>
646<funcprototype>
647  <funcdef>XdbeBackBufferAttributes *<function>XdbeGetBackBufferAttributes</function></funcdef>
648    <paramdef>Display <parameter> *dpy</parameter></paramdef>
649    <paramdef>XdbeBackBuffer <parameter> buffer</parameter></paramdef>
650</funcprototype>
651</funcsynopsis>
652
653<para>
654<function>XdbeGetBackBufferAttributes</function> returns the attributes associated with
655the specified buffer.
656</para>
657<para>
658The XdbeBackBufferAttributes structure has the following fields:
659</para>
660
661<literallayout remap='Ds'>
662Window           window           window that buffer belongs to
663</literallayout>
664
665<para>
666If buffer is not a valid <function>XdbeBackBuffer</function>, window is
667set to None.
668</para>
669<para>
670The returned <function>XdbeBackBufferAttributes</function> structure
671can be freed with the Xlib function <function>XFree</function>.
672</para>
673</sect1>
674
675<sect1 id="errors">
676<title>Errors</title>
677<para>
678The <function>XdbeBufferError</function> structure has the following fields:
679</para>
680<literallayout remap='Ds'>
681int                 type
682Display *           display       Display the event was read from
683XdbeBackBuffer      buffer        resource id
684unsigned long       serial        serial number of failed request
685unsigned char       error code    error base + <function>XdbeBadBuffer</function>
686unsigned char       request code  Major op-code of failed request
687unsigned char       minor code    Minor op-code of failed request
688</literallayout>
689</sect1>
690</chapter>
691
692<chapter id="acknowledgements">
693<title>Acknowledgements</title>
694
695<para>
696We wish to thank the following individuals who have contributed their time
697and talent toward shaping the DBE specification:
698</para>
699<para>
700T. Alex Chen, IBM; Peter Daifuku, Silicon Graphics, Inc.; Ian Elliott,
701Hewlett-Packard Company; Stephen Gildea, X Consortium, Inc.; Jim Graham,
702Sun; Larry Hare, AGE Logic; Jay Hersh, X Consortium, Inc.; Daryl Huff,
703Sun; Deron Dann Johnson, Sun; Louis Khouw, Sun; Mark Kilgard, Silicon
704Graphics, Inc.; Rob Lembree, Digital Equipment Corporation; Alan Ricker,
705Metheus; Michael Rosenblum, Digital Equipment Corporation; Bob Scheifler,
706X Consortium, Inc.; Larry Seiler, Digital Equipment Corporation; Jeanne
707Sparlin Smith, IBM; Jeff Stevenson, Hewlett-Packard Company; Walter
708Strand, Metheus; Ken Tidwell, Hewlett-Packard Company; and David P.
709Wiggins, X Consortium, Inc.
710</para>
711<para>
712Mark provided the impetus to start the DBE project. Ian wrote the first draft
713of the specification. David served as architect.
714</para>
715
716</chapter>
717<chapter id="references">
718<title>References</title>
719<para>
720Jeffrey Friedberg, Larry Seiler, and Jeff Vroom, "Multi-buffering Extension
721Specification Version 3.3."
722</para>
723<para>
724Tim Glauert, Dave Carver, Jim Gettys, and David P. Wiggins, "X
725Synchronization Extension Version 3.0."
726</para>
727</chapter>
728</book>
729