VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/7.0/xorg/xf86xvpriv.h@ 18709

Last change on this file since 18709 was 17236, checked in by vboxsync, 16 years ago

Additions/x11/x11include: blast! Reverted r43555 and r43556

  • Property svn:eol-style set to native
File size: 3.0 KB
Line 
1/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86xvpriv.h,v 1.2 2003/08/24 17:36:56 dawes Exp $ */
2
3/*
4 * Copyright (c) 2003 by The XFree86 Project, Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Except as contained in this notice, the name of the copyright holder(s)
25 * and author(s) shall not be used in advertising or otherwise to promote
26 * the sale, use or other dealings in this Software without prior written
27 * authorization from the copyright holder(s) and author(s).
28 */
29
30#ifndef _XF86XVPRIV_H_
31#define _XF86XVPRIV_H_
32
33#include "xf86xv.h"
34
35/*** These are DDX layer privates ***/
36
37extern int XF86XvScreenIndex;
38
39typedef struct {
40 DestroyWindowProcPtr DestroyWindow;
41 ClipNotifyProcPtr ClipNotify;
42 WindowExposuresProcPtr WindowExposures;
43 void (*AdjustFrame)(int, int, int, int);
44 Bool (*EnterVT)(int, int);
45 void (*LeaveVT)(int, int);
46 GCPtr videoGC;
47} XF86XVScreenRec, *XF86XVScreenPtr;
48
49typedef struct {
50 int flags;
51 PutVideoFuncPtr PutVideo;
52 PutStillFuncPtr PutStill;
53 GetVideoFuncPtr GetVideo;
54 GetStillFuncPtr GetStill;
55 StopVideoFuncPtr StopVideo;
56 SetPortAttributeFuncPtr SetPortAttribute;
57 GetPortAttributeFuncPtr GetPortAttribute;
58 QueryBestSizeFuncPtr QueryBestSize;
59 PutImageFuncPtr PutImage;
60 ReputImageFuncPtr ReputImage;
61 QueryImageAttributesFuncPtr QueryImageAttributes;
62} XvAdaptorRecPrivate, *XvAdaptorRecPrivatePtr;
63
64typedef struct {
65 ScrnInfoPtr pScrn;
66 DrawablePtr pDraw;
67 unsigned char type;
68 unsigned int subWindowMode;
69 DDXPointRec clipOrg;
70 RegionPtr clientClip;
71 RegionPtr pCompositeClip;
72 Bool FreeCompositeClip;
73 XvAdaptorRecPrivatePtr AdaptorRec;
74 XvStatus isOn;
75 Bool moved;
76 int vid_x, vid_y, vid_w, vid_h;
77 int drw_x, drw_y, drw_w, drw_h;
78 DevUnion DevPriv;
79} XvPortRecPrivate, *XvPortRecPrivatePtr;
80
81typedef struct _XF86XVWindowRec{
82 XvPortRecPrivatePtr PortRec;
83 struct _XF86XVWindowRec *next;
84} XF86XVWindowRec, *XF86XVWindowPtr;
85
86#endif /* _XF86XVPRIV_H_ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette