multibuf.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:8k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: multibuf.h,v 1.4 2001/02/09 02:03:24 xorgcvs Exp $
  3.  *
  4. Copyright 1989, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21.  */
  22. /* $XFree86: xc/include/extensions/multibuf.h,v 3.4 2001/12/14 19:53:28 dawes Exp $ */
  23. #ifndef _MULTIBUF_H_
  24. #define _MULTIBUF_H_
  25. #include <X11/Xfuncproto.h>
  26. #define MULTIBUFFER_PROTOCOL_NAME "Multi-Buffering"
  27. #define MULTIBUFFER_MAJOR_VERSION 1 /* current version numbers */
  28. #define MULTIBUFFER_MINOR_VERSION 1 /* has ClearImageBufferArea */
  29. #define X_MbufGetBufferVersion 0
  30. #define X_MbufCreateImageBuffers 1
  31. #define X_MbufDestroyImageBuffers 2
  32. #define X_MbufDisplayImageBuffers 3
  33. #define X_MbufSetMBufferAttributes 4
  34. #define X_MbufGetMBufferAttributes 5
  35. #define X_MbufSetBufferAttributes 6
  36. #define X_MbufGetBufferAttributes 7
  37. #define X_MbufGetBufferInfo 8
  38. #define X_MbufCreateStereoWindow 9
  39. #define X_MbufClearImageBufferArea 10
  40. /*
  41.  * update_action field
  42.  */
  43. #define MultibufferUpdateActionUndefined 0
  44. #define MultibufferUpdateActionBackground 1
  45. #define MultibufferUpdateActionUntouched 2
  46. #define MultibufferUpdateActionCopied 3
  47. /*
  48.  * update_hint field
  49.  */
  50. #define MultibufferUpdateHintFrequent 0
  51. #define MultibufferUpdateHintIntermittent 1
  52. #define MultibufferUpdateHintStatic 2
  53. /*
  54.  * valuemask fields
  55.  */
  56. #define MultibufferWindowUpdateHint (1L << 0)
  57. #define MultibufferBufferEventMask (1L << 0)
  58. /*
  59.  * mono vs. stereo and left vs. right
  60.  */
  61. #define MultibufferModeMono 0
  62. #define MultibufferModeStereo 1
  63. #define MultibufferSideMono 0
  64. #define MultibufferSideLeft    1
  65. #define MultibufferSideRight 2
  66. /*
  67.  * clobber state
  68.  */
  69. #define MultibufferUnclobbered 0
  70. #define MultibufferPartiallyClobbered 1
  71. #define MultibufferFullyClobbered 2
  72. /*
  73.  * event stuff
  74.  */
  75. #define MultibufferClobberNotifyMask 0x02000000
  76. #define MultibufferUpdateNotifyMask 0x04000000
  77. #define MultibufferClobberNotify 0
  78. #define MultibufferUpdateNotify 1
  79. #define MultibufferNumberEvents (MultibufferUpdateNotify + 1)
  80. #define MultibufferBadBuffer 0
  81. #define MultibufferNumberErrors (MultibufferBadBuffer + 1)
  82. #ifndef _MULTIBUF_SERVER_
  83. /*
  84.  * Extra definitions that will only be needed in the client
  85.  */
  86. typedef XID Multibuffer;
  87. typedef struct {
  88.     int type;     /* of event */
  89.     unsigned long serial;   /* # of last request processed by server */
  90.     int send_event;     /* true if this came frome a SendEvent request */
  91.     Display *display;     /* Display the event was read from */
  92.     Multibuffer buffer;     /* buffer of event */
  93.     int state;     /* see Clobbered constants above */
  94. } XmbufClobberNotifyEvent;
  95. typedef struct {
  96.     int type;     /* of event */
  97.     unsigned long serial;   /* # of last request processed by server */
  98.     int send_event;     /* true if this came frome a SendEvent request */
  99.     Display *display;     /* Display the event was read from */
  100.     Multibuffer buffer;     /* buffer of event */
  101. } XmbufUpdateNotifyEvent;
  102. /*
  103.  * per-window attributes that can be got
  104.  */
  105. typedef struct {
  106.     int displayed_index; /* which buffer is being displayed */
  107.     int update_action; /* Undefined, Background, Untouched, Copied */
  108.     int update_hint; /* Frequent, Intermittent, Static */
  109.     int window_mode; /* Mono, Stereo */
  110.     int nbuffers; /* Number of buffers */
  111.     Multibuffer *buffers; /* Buffers */
  112. } XmbufWindowAttributes;
  113. /*
  114.  * per-window attributes that can be set
  115.  */
  116. typedef struct {
  117.     int update_hint; /* Frequent, Intermittent, Static */
  118. } XmbufSetWindowAttributes;
  119. /*
  120.  * per-buffer attributes that can be got
  121.  */
  122. typedef struct {
  123.     Window window; /* which window this belongs to */
  124.     unsigned long event_mask; /* events that have been selected */
  125.     int buffer_index; /* which buffer is this */
  126.     int side; /* Mono, Left, Right */
  127. } XmbufBufferAttributes;
  128. /*
  129.  * per-buffer attributes that can be set
  130.  */
  131. typedef struct {
  132.     unsigned long event_mask; /* events that have been selected */
  133. } XmbufSetBufferAttributes;
  134. /*
  135.  * per-screen buffer info (there will be lists of them)
  136.  */
  137. typedef struct {
  138.     VisualID visualid; /* visual usuable at this depth */
  139.     int max_buffers; /* most buffers for this visual */
  140.     int depth; /* depth of buffers to be created */
  141. } XmbufBufferInfo;
  142. _XFUNCPROTOBEGIN
  143. extern Bool XmbufQueryExtension(
  144.     Display* /* dpy */,
  145.     int* /* event_base_return */,
  146.     int* /* error_base_return */
  147. );
  148. extern Status XmbufGetVersion(
  149.     Display* /* dpy */,
  150.     int* /* major_version_return */,
  151.     int* /* minor_version_return */
  152. );
  153. extern int XmbufCreateBuffers(
  154.     Display* /* dpy */,
  155.     Window /* w */,
  156.     int /* count */,
  157.     int /* update_action */,
  158.     int /* update_hint */,
  159.     Multibuffer* /* buffers */
  160. );
  161. extern void XmbufDestroyBuffers(
  162.     Display* /* dpy */,
  163.     Window /* window */
  164. );
  165. extern void XmbufDisplayBuffers(
  166.     Display* /* dpy */,
  167.     int /* count */,
  168.     Multibuffer* /* buffers */,
  169.     int /* min_delay */,
  170.     int /* max_delay */
  171. );
  172. extern Status XmbufGetWindowAttributes(
  173.     Display* /* dpy */,
  174.     Window /* w */,
  175.     XmbufWindowAttributes* /* attr */
  176. );
  177. extern void XmbufChangeWindowAttributes(
  178.     Display* /* dpy */,
  179.     Window /* w */,
  180.     unsigned long /* valuemask */,
  181.     XmbufSetWindowAttributes* /* attr */
  182. );
  183. extern Status XmbufGetBufferAttributes(
  184.     Display* /* dpy */,
  185.     Multibuffer /* b */,
  186.     XmbufBufferAttributes* /* attr */
  187. );
  188. extern void XmbufChangeBufferAttributes(
  189.     Display* /* dpy */,
  190.     Multibuffer /* b */,
  191.     unsigned long /* valuemask */,
  192.     XmbufSetBufferAttributes* /* attr */
  193. );
  194. extern Status XmbufGetScreenInfo(
  195.     Display* /* dpy */,
  196.     Drawable /* d */,
  197.     int* /* nmono_return */,
  198.     XmbufBufferInfo** /* mono_info_return */,
  199.     int* /* nstereo_return */,
  200.     XmbufBufferInfo** /* stereo_info_return */
  201. );
  202. extern Window XmbufCreateStereoWindow(
  203.     Display* /* dpy */,
  204.     Window /* parent */,
  205.     int /* x */,
  206.     int /* y */,
  207.     unsigned int /* width */,
  208.     unsigned int /* height */,
  209.     unsigned int /* border_width */,
  210.     int /* depth */,
  211.     unsigned int /* class */,
  212.     Visual* /* visual */,
  213.     unsigned long /* valuemask */,
  214.     XSetWindowAttributes* /* attr */,
  215.     Multibuffer* /* leftp */,
  216.     Multibuffer* /* rightp */
  217. );
  218. extern void XmbufClearBufferArea(
  219.     Display* /* dpy */,
  220.     Multibuffer /* buffer */,
  221.     int /* x */,
  222.     int /* y */,
  223.     unsigned int /* width */,
  224.     unsigned int /* height */,
  225.     Bool /* exposures */
  226. );
  227. _XFUNCPROTOEND
  228. #else
  229. #include "scrnintstr.h"
  230. typedef Bool (* mbInitFunc)();
  231. struct _mbufScreen; /* declared in multibufst.h */
  232. extern void RegisterMultibufferInit(
  233.     ScreenPtr /* pScreen */,
  234.     Bool (* /* bufMultibufferInit */)(
  235. ScreenPtr /* pScreen */,
  236. struct _mbufScreen * /* pMBScreen */
  237.     )
  238. );
  239. struct xMbufBufferInfo; /* declared in multibufst.h */
  240. extern void RegisterDoubleBufferHardware(
  241.     ScreenPtr /* pScreen */,
  242.     int /* nInfo */,
  243.     struct xMbufBufferInfo * /* pInfo */,
  244.     DevUnion * /* frameBuffer */,
  245.     DevUnion /* selectPlane */,
  246.     void (* /* CopyBufferBitsFunc */ )(),
  247.     void (* /* DrawSelectPlaneFunc */ )()
  248. );
  249. extern int CreateImageBuffers (
  250.     WindowPtr /* pWin */,
  251.     int /* nbuf */,
  252.     XID * /* ids */,
  253.     int /* action */,
  254.     int /* hint */
  255. );
  256. extern void DestroyImageBuffers (
  257.     WindowPtr /* pWin */
  258. );
  259. extern int DisplayImageBuffers (
  260.     XID * /* ids */,
  261.     int /* nbuf */
  262. );
  263. #endif /* _MULTIBUF_SERVER_ */
  264. #endif /* _MULTIBUF_H_ */