VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/glxcontext.h@ 66940

最後變更 在這個檔案從66940是 45134,由 vboxsync 提交於 12 年 前

Additions/X11: build vboxvideo_drv.so for X.Org Server 1.14.

  • 屬性 svn:eol-style 設為 native
檔案大小: 4.4 KB
 
1#ifdef HAVE_DIX_CONFIG_H
2#include <dix-config.h>
3#endif
4
5#ifndef _GLX_context_h_
6#define _GLX_context_h_
7
8/*
9 * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
10 * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice including the dates of first publication and
20 * either this permission notice or a reference to
21 * http://oss.sgi.com/projects/FreeB/
22 * shall be included in all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
29 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 * Except as contained in this notice, the name of Silicon Graphics, Inc.
33 * shall not be used in advertising or otherwise to promote the sale, use or
34 * other dealings in this Software without prior written authorization from
35 * Silicon Graphics, Inc.
36 */
37
38typedef struct __GLXtextureFromPixmap __GLXtextureFromPixmap;
39struct __GLXtextureFromPixmap {
40 int (*bindTexImage) (__GLXcontext * baseContext,
41 int buffer, __GLXdrawable * pixmap);
42 int (*releaseTexImage) (__GLXcontext * baseContext,
43 int buffer, __GLXdrawable * pixmap);
44};
45
46struct __GLXcontext {
47 void (*destroy) (__GLXcontext * context);
48 int (*makeCurrent) (__GLXcontext * context);
49 int (*loseCurrent) (__GLXcontext * context);
50 int (*copy) (__GLXcontext * dst, __GLXcontext * src, unsigned long mask);
51 Bool (*wait) (__GLXcontext * context, __GLXclientState * cl, int *error);
52
53 __GLXtextureFromPixmap *textureFromPixmap;
54
55 /*
56 ** list of context structs
57 */
58 __GLXcontext *last;
59 __GLXcontext *next;
60
61 /*
62 ** config struct for this context
63 */
64 __GLXconfig *config;
65
66 /*
67 ** Pointer to screen info data for this context. This is set
68 ** when the context is created.
69 */
70 __GLXscreen *pGlxScreen;
71
72 /*
73 ** The XID of this context.
74 */
75 XID id;
76
77 /*
78 ** The XID of the shareList context.
79 */
80 XID share_id;
81
82 /*
83 ** Whether this context's ID still exists.
84 */
85 GLboolean idExists;
86
87 /*
88 ** Whether this context is current for some client.
89 */
90 GLboolean isCurrent;
91
92 /*
93 ** Whether this context is a direct rendering context.
94 */
95 GLboolean isDirect;
96
97 /*
98 ** This flag keeps track of whether there are unflushed GL commands.
99 */
100 GLboolean hasUnflushedCommands;
101
102 /*
103 ** Current rendering mode for this context.
104 */
105 GLenum renderMode;
106
107 /**
108 * Reset notification strategy used when a GPU reset occurs.
109 */
110 GLenum resetNotificationStrategy;
111
112 /*
113 ** Buffers for feedback and selection.
114 */
115 GLfloat *feedbackBuf;
116 GLint feedbackBufSize; /* number of elements allocated */
117 GLuint *selectBuf;
118 GLint selectBufSize; /* number of elements allocated */
119
120 /*
121 ** The drawable private this context is bound to
122 */
123 __GLXdrawable *drawPriv;
124 __GLXdrawable *readPriv;
125};
126
127void __glXContextDestroy(__GLXcontext * context);
128
129extern int validGlxScreen(ClientPtr client, int screen,
130 __GLXscreen ** pGlxScreen, int *err);
131
132extern int validGlxFBConfig(ClientPtr client, __GLXscreen * pGlxScreen,
133 XID id, __GLXconfig ** config, int *err);
134
135extern int validGlxContext(ClientPtr client, XID id, int access_mode,
136 __GLXcontext ** context, int *err);
137
138extern __GLXcontext *__glXdirectContextCreate(__GLXscreen * screen,
139 __GLXconfig * modes,
140 __GLXcontext * shareContext);
141
142#endif /* !__GLX_context_h__ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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