blob: 29b94b8810ee441e696e470b2fde3baedf284da2 [file] [log] [blame]
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001/*
Adam Jacksondc8058c2008-09-19 17:16:53 -04002 * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
3 * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice including the dates of first publication and
13 * either this permission notice or a reference to
14 * http://oss.sgi.com/projects/FreeB/
15 * shall be included in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Except as contained in this notice, the name of Silicon Graphics, Inc.
26 * shall not be used in advertising or otherwise to promote the sale, use or
27 * other dealings in this Software without prior written authorization from
28 * Silicon Graphics, Inc.
29 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +000030
31/**
32 * \file glxcmds.c
33 * Client-side GLX interface.
34 */
35
Adam Jacksoncb3610e2004-10-25 21:09:16 +000036#include "glxclient.h"
Adam Jacksoncb3610e2004-10-25 21:09:16 +000037#include "glapi.h"
Adam Jacksoncb3610e2004-10-25 21:09:16 +000038#include "glxextensions.h"
Chia-I Wue8c7d752010-12-26 18:24:13 +080039#include "indirect.h"
Ian Romanicked4a65c2011-12-07 16:13:02 -080040#include "glx_error.h"
George Sapountzisdf04ffb2008-04-18 17:28:34 +030041
42#ifdef GLX_DIRECT_RENDERING
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070043#ifdef GLX_USE_APPLEGL
Jon TURNEY5a459a02014-05-12 10:47:07 +010044#include "apple/apple_glx_context.h"
45#include "apple/apple_glx.h"
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070046#else
Adam Jacksoncb3610e2004-10-25 21:09:16 +000047#include <sys/time.h>
Jon TURNEY2b9dac32010-04-21 12:58:54 +010048#ifdef XF86VIDMODE
George Sapountzisdf04ffb2008-04-18 17:28:34 +030049#include <X11/extensions/xf86vmode.h>
Jon TURNEY2b9dac32010-04-21 12:58:54 +010050#endif
Jeremy Huddleston80b280d2010-04-02 01:35:19 -070051#endif
George Sapountzisdf04ffb2008-04-18 17:28:34 +030052#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +000053
RALOVICH, Kristóf9c7aaa72008-11-04 10:59:39 +010054#include <X11/Xlib-xcb.h>
55#include <xcb/xcb.h>
56#include <xcb/glx.h>
Marek Olšák37d3a262016-03-03 18:43:53 +010057#include "GL/mesa_glinterop.h"
RALOVICH, Kristóf9c7aaa72008-11-04 10:59:39 +010058
Ian Romanick26d2ce02009-11-06 14:52:49 -080059static const char __glXGLXClientVendorName[] = "Mesa Project and SGI";
Adam Jacksoncb3610e2004-10-25 21:09:16 +000060static const char __glXGLXClientVersion[] = "1.4";
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050061
Jeremy Huddleston80b280d2010-04-02 01:35:19 -070062#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050063
Adam Jacksoncb3610e2004-10-25 21:09:16 +000064/**
65 * Get the __DRIdrawable for the drawable associated with a GLXContext
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020066 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +000067 * \param dpy The display associated with \c drawable.
68 * \param drawable GLXDrawable whose __DRIdrawable part is to be retrieved.
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050069 * \param scrn_num If non-NULL, the drawables screen is stored there
Adam Jacksoncb3610e2004-10-25 21:09:16 +000070 * \returns A pointer to the context's __DRIdrawable on success, or NULL if
71 * the drawable is not associated with a direct-rendering context.
72 */
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040073_X_HIDDEN __GLXDRIdrawable *
Kristian Høgsbergeeaab202010-07-22 22:36:37 -040074GetGLXDRIDrawable(Display * dpy, GLXDrawable drawable)
Adam Jacksoncb3610e2004-10-25 21:09:16 +000075{
Kristian Høgsbergc356f582010-07-28 11:16:00 -040076 struct glx_display *priv = __glXInitialize(dpy);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020077 __GLXDRIdrawable *pdraw;
Adam Jacksoncb3610e2004-10-25 21:09:16 +000078
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020079 if (priv == NULL)
80 return NULL;
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040081
Kristian Høgsbergeeaab202010-07-22 22:36:37 -040082 if (__glxHashLookup(priv->drawHash, drawable, (void *) &pdraw) == 0)
Kristian Høgsberge3e81962010-07-19 21:15:50 -040083 return pdraw;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020084
85 return NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +000086}
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050087
Adam Jacksoncb3610e2004-10-25 21:09:16 +000088#endif
89
Jesse Barnes4df13762011-05-06 10:31:24 -070090_X_HIDDEN struct glx_drawable *
91GetGLXDrawable(Display *dpy, GLXDrawable drawable)
92{
93 struct glx_display *priv = __glXInitialize(dpy);
94 struct glx_drawable *glxDraw;
95
96 if (priv == NULL)
97 return NULL;
98
99 if (__glxHashLookup(priv->glXDrawHash, drawable, (void *) &glxDraw) == 0)
100 return glxDraw;
101
102 return NULL;
103}
104
105_X_HIDDEN int
106InitGLXDrawable(Display *dpy, struct glx_drawable *glxDraw, XID xDrawable,
107 GLXDrawable drawable)
108{
109 struct glx_display *priv = __glXInitialize(dpy);
110
111 if (!priv)
112 return -1;
113
114 glxDraw->xDrawable = xDrawable;
115 glxDraw->drawable = drawable;
116 glxDraw->lastEventSbc = 0;
117 glxDraw->eventSbcWrap = 0;
118
119 return __glxHashInsert(priv->glXDrawHash, drawable, glxDraw);
120}
121
122_X_HIDDEN void
123DestroyGLXDrawable(Display *dpy, GLXDrawable drawable)
124{
125 struct glx_display *priv = __glXInitialize(dpy);
126 struct glx_drawable *glxDraw;
127
128 if (!priv)
129 return;
130
131 glxDraw = GetGLXDrawable(dpy, drawable);
132 __glxHashDelete(priv->glXDrawHash, drawable);
133 free(glxDraw);
134}
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000135
136/**
137 * Get the GLX per-screen data structure associated with a GLX context.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200138 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000139 * \param dpy Display for which the GLX per-screen information is to be
140 * retrieved.
141 * \param scrn Screen on \c dpy for which the GLX per-screen information is
142 * to be retrieved.
143 * \returns A pointer to the GLX per-screen data if \c dpy and \c scrn
144 * specify a valid GLX screen, or NULL otherwise.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200145 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000146 * \todo Should this function validate that \c scrn is within the screen
147 * number range for \c dpy?
148 */
149
Ian Romanick588042a2011-11-30 10:33:37 -0800150_X_HIDDEN struct glx_screen *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200151GetGLXScreenConfigs(Display * dpy, int scrn)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000152{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400153 struct glx_display *const priv = __glXInitialize(dpy);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000154
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200155 return (priv
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400156 && priv->screens !=
157 NULL) ? priv->screens[scrn] : NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000158}
159
160
161static int
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400162GetGLXPrivScreenConfig(Display * dpy, int scrn, struct glx_display ** ppriv,
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400163 struct glx_screen ** ppsc)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000164{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200165 /* Initialize the extension, if needed . This has the added value
166 * of initializing/allocating the display private
167 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000168
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200169 if (dpy == NULL) {
170 return GLX_NO_EXTENSION;
171 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000172
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200173 *ppriv = __glXInitialize(dpy);
174 if (*ppriv == NULL) {
175 return GLX_NO_EXTENSION;
176 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000177
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200178 /* Check screen number to see if its valid */
179 if ((scrn < 0) || (scrn >= ScreenCount(dpy))) {
180 return GLX_BAD_SCREEN;
181 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000182
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200183 /* Check to see if the GL is supported on this screen */
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400184 *ppsc = (*ppriv)->screens[scrn];
Dave Airlieb01a3a92013-11-18 17:34:52 +1000185 if ((*ppsc)->configs == NULL && (*ppsc)->visuals == NULL) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200186 /* No support for GL on this screen regardless of visual */
187 return GLX_BAD_VISUAL;
188 }
189
190 return Success;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000191}
192
193
194/**
195 * Determine if a \c GLXFBConfig supplied by the application is valid.
196 *
197 * \param dpy Application supplied \c Display pointer.
198 * \param config Application supplied \c GLXFBConfig.
199 *
200 * \returns If the \c GLXFBConfig is valid, the a pointer to the matching
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400201 * \c struct glx_config structure is returned. Otherwise, \c NULL
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000202 * is returned.
203 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400204static struct glx_config *
205ValidateGLXFBConfig(Display * dpy, GLXFBConfig fbconfig)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000206{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400207 struct glx_display *const priv = __glXInitialize(dpy);
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400208 int num_screens = ScreenCount(dpy);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200209 unsigned i;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400210 struct glx_config *config;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000211
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200212 if (priv != NULL) {
213 for (i = 0; i < num_screens; i++) {
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400214 for (config = priv->screens[i]->configs; config != NULL;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400215 config = config->next) {
216 if (config == (struct glx_config *) fbconfig) {
217 return config;
218 }
219 }
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200220 }
221 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000222
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200223 return NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000224}
225
Tomasz Lis2eed9ff2013-07-18 14:19:38 -0700226/**
227 * Verifies context's GLX_RENDER_TYPE value with config.
228 *
229 * \param config GLX FBConfig which will support the returned renderType.
230 * \param renderType The context render type to be verified.
231 * \return True if the value of context renderType was approved, or 0 if no
232 * valid value was found.
233 */
234Bool
235validate_renderType_against_config(const struct glx_config *config,
236 int renderType)
237{
238 switch (renderType) {
239 case GLX_RGBA_TYPE:
240 return (config->renderType & GLX_RGBA_BIT) != 0;
241 case GLX_COLOR_INDEX_TYPE:
242 return (config->renderType & GLX_COLOR_INDEX_BIT) != 0;
243 case GLX_RGBA_FLOAT_TYPE_ARB:
244 return (config->renderType & GLX_RGBA_FLOAT_BIT_ARB) != 0;
245 case GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT:
246 return (config->renderType & GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT) != 0;
247 default:
248 break;
249 }
250 return 0;
251}
252
Kristian Høgsberg31819832010-07-22 21:24:14 -0400253_X_HIDDEN Bool
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400254glx_context_init(struct glx_context *gc,
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400255 struct glx_screen *psc, struct glx_config *config)
Kristian Høgsberg31819832010-07-22 21:24:14 -0400256{
257 gc->majorOpcode = __glXSetupForCommand(psc->display->dpy);
258 if (!gc->majorOpcode)
Brian Paul482c43a2013-06-26 13:42:51 -0600259 return False;
Kristian Høgsberg31819832010-07-22 21:24:14 -0400260
261 gc->screen = psc->scr;
262 gc->psc = psc;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400263 gc->config = config;
Kristian Høgsberg31819832010-07-22 21:24:14 -0400264 gc->isDirect = GL_TRUE;
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400265 gc->currentContextTag = -1;
Kristian Høgsberg31819832010-07-22 21:24:14 -0400266
Brian Paul482c43a2013-06-26 13:42:51 -0600267 return True;
Kristian Høgsberg31819832010-07-22 21:24:14 -0400268}
269
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000270
271/**
Adam Jackson3869be72011-04-29 16:30:50 -0400272 * Create a new context.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200273 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000274 * \param renderType For FBConfigs, what is the rendering type?
275 */
276
277static GLXContext
Adam Jackson3869be72011-04-29 16:30:50 -0400278CreateContext(Display *dpy, int generic_id, struct glx_config *config,
279 GLXContext shareList_user, Bool allowDirect,
Ian Romanick7bcfb662010-02-04 16:37:59 -0800280 unsigned code, int renderType, int screen)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000281{
nobledb5dc4072010-08-19 14:06:21 -0400282 struct glx_context *gc;
283 struct glx_screen *psc;
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400284 struct glx_context *shareList = (struct glx_context *) shareList_user;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200285 if (dpy == NULL)
286 return NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000287
nobledb5dc4072010-08-19 14:06:21 -0400288 psc = GetGLXScreenConfigs(dpy, screen);
289 if (psc == NULL)
290 return NULL;
291
Ian Romanickd46d30f2010-02-04 17:06:18 -0800292 if (generic_id == None)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200293 return NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000294
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400295 gc = NULL;
Jeremy Huddleston1885cf22011-06-05 18:50:55 -0400296#ifdef GLX_USE_APPLEGL
297 gc = applegl_create_context(psc, config, shareList, renderType);
298#else
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400299 if (allowDirect && psc->vtable->create_context)
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400300 gc = psc->vtable->create_context(psc, config, shareList, renderType);
Kristian Høgsberg31819832010-07-22 21:24:14 -0400301 if (!gc)
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400302 gc = indirect_create_context(psc, config, shareList, renderType);
Jeremy Huddleston1885cf22011-06-05 18:50:55 -0400303#endif
Kristian Høgsberg31819832010-07-22 21:24:14 -0400304 if (!gc)
305 return NULL;
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400306
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800307 LockDisplay(dpy);
308 switch (code) {
309 case X_GLXCreateContext: {
310 xGLXCreateContextReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000311
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800312 /* Send the glXCreateContext request */
313 GetReq(GLXCreateContext, req);
314 req->reqType = gc->majorOpcode;
315 req->glxCode = X_GLXCreateContext;
316 req->context = gc->xid = XAllocID(dpy);
Ian Romanickd46d30f2010-02-04 17:06:18 -0800317 req->visual = generic_id;
Ian Romanickc3db1d62010-02-04 17:01:42 -0800318 req->screen = screen;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800319 req->shareList = shareList ? shareList->xid : None;
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400320 req->isDirect = gc->isDirect;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800321 break;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200322 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000323
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800324 case X_GLXCreateNewContext: {
325 xGLXCreateNewContextReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000326
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800327 /* Send the glXCreateNewContext request */
328 GetReq(GLXCreateNewContext, req);
329 req->reqType = gc->majorOpcode;
330 req->glxCode = X_GLXCreateNewContext;
331 req->context = gc->xid = XAllocID(dpy);
Ian Romanickd46d30f2010-02-04 17:06:18 -0800332 req->fbconfig = generic_id;
Ian Romanickc3db1d62010-02-04 17:01:42 -0800333 req->screen = screen;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800334 req->renderType = renderType;
335 req->shareList = shareList ? shareList->xid : None;
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400336 req->isDirect = gc->isDirect;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800337 break;
338 }
Ian Romanick8bffadb2010-02-04 16:28:52 -0800339
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800340 case X_GLXvop_CreateContextWithConfigSGIX: {
341 xGLXVendorPrivateWithReplyReq *vpreq;
342 xGLXCreateContextWithConfigSGIXReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000343
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800344 /* Send the glXCreateNewContext request */
345 GetReqExtra(GLXVendorPrivateWithReply,
346 sz_xGLXCreateContextWithConfigSGIXReq -
347 sz_xGLXVendorPrivateWithReplyReq, vpreq);
348 req = (xGLXCreateContextWithConfigSGIXReq *) vpreq;
349 req->reqType = gc->majorOpcode;
350 req->glxCode = X_GLXVendorPrivateWithReply;
351 req->vendorCode = X_GLXvop_CreateContextWithConfigSGIX;
352 req->context = gc->xid = XAllocID(dpy);
Ian Romanickd46d30f2010-02-04 17:06:18 -0800353 req->fbconfig = generic_id;
Ian Romanickc3db1d62010-02-04 17:01:42 -0800354 req->screen = screen;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800355 req->renderType = renderType;
356 req->shareList = shareList ? shareList->xid : None;
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400357 req->isDirect = gc->isDirect;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800358 break;
359 }
Ian Romanick8bffadb2010-02-04 16:28:52 -0800360
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800361 default:
362 /* What to do here? This case is the sign of an internal error. It
363 * should never be reachable.
364 */
365 break;
366 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000367
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800368 UnlockDisplay(dpy);
369 SyncHandle();
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000370
Ian Romanicka832aa52011-12-08 15:03:19 -0800371 gc->share_xid = shareList ? shareList->xid : None;
Ian Romanickbc7b2f02010-02-04 16:46:46 -0800372 gc->imported = GL_FALSE;
Brian Paul521e4b92009-09-29 10:24:27 -0600373
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400374 return (GLXContext) gc;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000375}
376
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400377_GLX_PUBLIC GLXContext
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200378glXCreateContext(Display * dpy, XVisualInfo * vis,
379 GLXContext shareList, Bool allowDirect)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000380{
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400381 struct glx_config *config = NULL;
Tomasz Lis36259a12013-07-17 13:49:14 +0200382 int renderType = GLX_RGBA_TYPE;
Ian Romanick52cf8db2010-02-04 16:59:10 -0800383
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700384#if defined(GLX_DIRECT_RENDERING) || defined(GLX_USE_APPLEGL)
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400385 struct glx_screen *const psc = GetGLXScreenConfigs(dpy, vis->screen);
Ian Romanick52cf8db2010-02-04 16:59:10 -0800386
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +0200387 if (psc)
388 config = glx_config_find_visual(psc->visuals, vis->visualid);
389
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400390 if (config == NULL) {
Ian Romanick52cf8db2010-02-04 16:59:10 -0800391 xError error;
392
393 error.errorCode = BadValue;
394 error.resourceID = vis->visualid;
395 error.sequenceNumber = dpy->request;
396 error.type = X_Error;
397 error.majorCode = __glXSetupForCommand(dpy);
398 error.minorCode = X_GLXCreateContext;
399 _XError(dpy, &error);
400 return None;
401 }
402
Tomasz Lis1c748df2013-07-17 13:49:17 +0200403 /* Choose the context render type based on DRI config values. It is
404 * unusual to set this type from config, but we have no other choice, as
405 * this old API does not provide renderType parameter.
406 */
407 if (config->renderType & GLX_RGBA_FLOAT_BIT_ARB) {
408 renderType = GLX_RGBA_FLOAT_TYPE_ARB;
409 } else if (config->renderType & GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT) {
410 renderType = GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT;
411 } else if (config->renderType & GLX_RGBA_BIT) {
412 renderType = GLX_RGBA_TYPE;
413 } else if (config->renderType & GLX_COLOR_INDEX_BIT) {
414 renderType = GLX_COLOR_INDEX_TYPE;
415 } else if (config->rgbMode) {
416 /* If we're here, then renderType is not set correctly. Let's use a
417 * safeguard - any TrueColor or DirectColor mode is RGB mode. Such
418 * default value is needed by old DRI drivers, which didn't set
419 * renderType correctly as the value was just ignored.
420 */
421 renderType = GLX_RGBA_TYPE;
422 } else {
423 /* Safeguard - only one option left, all non-RGB modes are indexed
424 * modes. Again, this allows drivers with invalid renderType to work
425 * properly.
426 */
427 renderType = GLX_COLOR_INDEX_TYPE;
428 }
Ian Romanick52cf8db2010-02-04 16:59:10 -0800429#endif
430
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400431 return CreateContext(dpy, vis->visualid, config, shareList, allowDirect,
Ian Romanick52cf8db2010-02-04 16:59:10 -0800432 X_GLXCreateContext, renderType, vis->screen);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000433}
434
Ian Romanick4dbd13c2011-12-07 13:31:27 -0800435static void
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400436glx_send_destroy_context(Display *dpy, XID xid)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000437{
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400438 CARD8 opcode = __glXSetupForCommand(dpy);
439 xGLXDestroyContextReq *req;
440
441 LockDisplay(dpy);
442 GetReq(GLXDestroyContext, req);
443 req->reqType = opcode;
444 req->glxCode = X_GLXDestroyContext;
445 req->context = xid;
446 UnlockDisplay(dpy);
447 SyncHandle();
448}
449
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000450/*
451** Destroy the named context
452*/
Adam Jackson9e2bc5d2011-06-02 16:29:59 -0400453
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400454_GLX_PUBLIC void
Adam Jackson9e2bc5d2011-06-02 16:29:59 -0400455glXDestroyContext(Display * dpy, GLXContext ctx)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000456{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400457 struct glx_context *gc = (struct glx_context *) ctx;
458
Ian Romanick4dbd13c2011-12-07 13:31:27 -0800459 if (gc == NULL || gc->xid == None)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200460 return;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000461
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200462 __glXLock();
Ian Romanick4dbd13c2011-12-07 13:31:27 -0800463 if (!gc->imported)
464 glx_send_destroy_context(dpy, gc->xid);
465
Brian Paul5e6a6a22009-10-22 18:19:01 -0600466 if (gc->currentDpy) {
467 /* This context is bound to some thread. According to the man page,
468 * we should not actually delete the context until it's unbound.
469 * Note that we set gc->xid = None above. In MakeContextCurrent()
470 * we check for that and delete the context there.
471 */
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400472 gc->xid = None;
Ian Romanick4dbd13c2011-12-07 13:31:27 -0800473 } else {
474 gc->vtable->destroy(gc);
Brian Paul5e6a6a22009-10-22 18:19:01 -0600475 }
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400476 __glXUnlock();
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000477}
Adam Jackson489ccef2004-12-15 17:18:06 +0000478
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000479/*
480** Return the major and minor version #s for the GLX extension
481*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400482_GLX_PUBLIC Bool
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200483glXQueryVersion(Display * dpy, int *major, int *minor)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000484{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400485 struct glx_display *priv;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000486
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200487 /* Init the extension. This fetches the major and minor version. */
488 priv = __glXInitialize(dpy);
489 if (!priv)
Brian Paul482c43a2013-06-26 13:42:51 -0600490 return False;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000491
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200492 if (major)
493 *major = priv->majorVersion;
494 if (minor)
495 *minor = priv->minorVersion;
Brian Paul482c43a2013-06-26 13:42:51 -0600496 return True;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000497}
498
499/*
Zoë Blade05e7f7f2015-04-22 11:33:17 +0100500** Query the existence of the GLX extension
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000501*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400502_GLX_PUBLIC Bool
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200503glXQueryExtension(Display * dpy, int *errorBase, int *eventBase)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000504{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200505 int major_op, erb, evb;
506 Bool rv;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000507
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200508 rv = XQueryExtension(dpy, GLX_EXTENSION_NAME, &major_op, &evb, &erb);
509 if (rv) {
510 if (errorBase)
511 *errorBase = erb;
512 if (eventBase)
513 *eventBase = evb;
514 }
515 return rv;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000516}
517
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400518/*
519** Put a barrier in the token stream that forces the GL to finish its
520** work before X can proceed.
521*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400522_GLX_PUBLIC void
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400523glXWaitGL(void)
524{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400525 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400526
Bernard Kilarski2e3f0672016-06-07 13:33:33 +0300527 if (gc != &dummyContext && gc->vtable->wait_gl)
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400528 gc->vtable->wait_gl(gc);
529}
530
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000531/*
532** Put a barrier in the token stream that forces X to finish its
533** work before GL can proceed.
534*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400535_GLX_PUBLIC void
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200536glXWaitX(void)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000537{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400538 struct glx_context *gc = __glXGetCurrentContext();
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000539
Bernard Kilarski2e3f0672016-06-07 13:33:33 +0300540 if (gc != &dummyContext && gc->vtable->wait_x)
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400541 gc->vtable->wait_x(gc);
542}
543
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400544_GLX_PUBLIC void
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400545glXUseXFont(Font font, int first, int count, int listBase)
546{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400547 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400548
Bernard Kilarski2e3f0672016-06-07 13:33:33 +0300549 if (gc != &dummyContext && gc->vtable->use_x_font)
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400550 gc->vtable->use_x_font(gc, font, first, count, listBase);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000551}
552
553/************************************************************************/
554
555/*
556** Copy the source context to the destination context using the
557** attribute "mask".
558*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400559_GLX_PUBLIC void
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400560glXCopyContext(Display * dpy, GLXContext source_user,
561 GLXContext dest_user, unsigned long mask)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000562{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400563 struct glx_context *source = (struct glx_context *) source_user;
564 struct glx_context *dest = (struct glx_context *) dest_user;
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700565#ifdef GLX_USE_APPLEGL
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400566 struct glx_context *gc = __glXGetCurrentContext();
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700567 int errorcode;
568 bool x11error;
569
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700570 if(apple_glx_copy_context(gc->driContext, source->driContext, dest->driContext,
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700571 mask, &errorcode, &x11error)) {
572 __glXSendError(dpy, errorcode, 0, X_GLXCopyContext, x11error);
573 }
574
575#else
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200576 xGLXCopyContextReq *req;
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400577 struct glx_context *gc = __glXGetCurrentContext();
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200578 GLXContextTag tag;
579 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000580
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200581 opcode = __glXSetupForCommand(dpy);
582 if (!opcode) {
583 return;
584 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000585
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700586#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400587 if (gc->isDirect) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200588 /* NOT_DONE: This does not work yet */
589 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000590#endif
591
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200592 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000593 ** If the source is the current context, send its tag so that the context
594 ** can be flushed before the copy.
595 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200596 if (source == gc && dpy == gc->currentDpy) {
597 tag = gc->currentContextTag;
598 }
599 else {
600 tag = 0;
601 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000602
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200603 /* Send the glXCopyContext request */
604 LockDisplay(dpy);
605 GetReq(GLXCopyContext, req);
606 req->reqType = opcode;
607 req->glxCode = X_GLXCopyContext;
608 req->source = source ? source->xid : None;
609 req->dest = dest ? dest->xid : None;
610 req->mask = mask;
611 req->contextTag = tag;
612 UnlockDisplay(dpy);
613 SyncHandle();
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700614#endif /* GLX_USE_APPLEGL */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000615}
616
617
618/**
619 * Determine if a context uses direct rendering.
620 *
621 * \param dpy Display where the context was created.
622 * \param contextID ID of the context to be tested.
623 *
Brian Paul482c43a2013-06-26 13:42:51 -0600624 * \returns \c True if the context is direct rendering or not.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000625 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200626static Bool
627__glXIsDirect(Display * dpy, GLXContextID contextID)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000628{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200629 CARD8 opcode;
Brian Pauld171bc92013-06-26 13:38:18 -0600630 xcb_connection_t *c;
631 xcb_generic_error_t *err;
632 xcb_glx_is_direct_reply_t *reply;
633 Bool is_direct;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000634
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200635 opcode = __glXSetupForCommand(dpy);
636 if (!opcode) {
Brian Paul482c43a2013-06-26 13:42:51 -0600637 return False;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200638 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000639
Brian Pauld171bc92013-06-26 13:38:18 -0600640 c = XGetXCBConnection(dpy);
641 reply = xcb_glx_is_direct_reply(c, xcb_glx_is_direct(c, contextID), &err);
642 is_direct = (reply != NULL && reply->is_direct) ? True : False;
Ian Romanicked4a65c2011-12-07 16:13:02 -0800643
644 if (err != NULL) {
645 __glXSendErrorForXcb(dpy, err);
646 free(err);
647 }
648
RALOVICH, Kristóf9c7aaa72008-11-04 10:59:39 +0100649 free(reply);
650
651 return is_direct;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000652}
653
Ian Romanickc39bf5e2005-07-24 06:29:14 +0000654/**
655 * \todo
Brian Paul482c43a2013-06-26 13:42:51 -0600656 * Shouldn't this function \b always return \c False when
Ian Romanickc39bf5e2005-07-24 06:29:14 +0000657 * \c GLX_DIRECT_RENDERING is not defined? Do we really need to bother with
658 * the GLX protocol here at all?
659 */
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400660_GLX_PUBLIC Bool
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400661glXIsDirect(Display * dpy, GLXContext gc_user)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000662{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400663 struct glx_context *gc = (struct glx_context *) gc_user;
664
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200665 if (!gc) {
Brian Paul482c43a2013-06-26 13:42:51 -0600666 return False;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200667 }
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400668 else if (gc->isDirect) {
Brian Paul482c43a2013-06-26 13:42:51 -0600669 return True;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200670 }
Jeremy Huddlestona18702f2010-05-01 13:59:30 -0700671#ifdef GLX_USE_APPLEGL /* TODO: indirect on darwin */
Brian Paul482c43a2013-06-26 13:42:51 -0600672 return False;
Jeremy Huddlestona18702f2010-05-01 13:59:30 -0700673#else
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200674 return __glXIsDirect(dpy, gc->xid);
Jeremy Huddlestona18702f2010-05-01 13:59:30 -0700675#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000676}
677
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400678_GLX_PUBLIC GLXPixmap
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200679glXCreateGLXPixmap(Display * dpy, XVisualInfo * vis, Pixmap pixmap)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000680{
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700681#ifdef GLX_USE_APPLEGL
682 int screen = vis->screen;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400683 struct glx_screen *const psc = GetGLXScreenConfigs(dpy, screen);
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400684 const struct glx_config *config;
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700685
Jeremy Huddlestonb7f0ed82011-06-05 18:19:59 -0400686 config = glx_config_find_visual(psc->visuals, vis->visualid);
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700687
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400688 if(apple_glx_pixmap_create(dpy, vis->screen, pixmap, config))
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700689 return None;
690
691 return pixmap;
692#else
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200693 xGLXCreateGLXPixmapReq *req;
Jesse Barnes4df13762011-05-06 10:31:24 -0700694 struct glx_drawable *glxDraw;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200695 GLXPixmap xid;
696 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000697
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +0200698#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
699 struct glx_display *const priv = __glXInitialize(dpy);
700
701 if (priv == NULL)
702 return None;
703#endif
704
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200705 opcode = __glXSetupForCommand(dpy);
706 if (!opcode) {
707 return None;
708 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000709
Matt Turner7c7b7b02012-09-04 22:52:36 -0700710 glxDraw = malloc(sizeof(*glxDraw));
Jesse Barnes4df13762011-05-06 10:31:24 -0700711 if (!glxDraw)
712 return None;
713
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200714 /* Send the glXCreateGLXPixmap request */
715 LockDisplay(dpy);
716 GetReq(GLXCreateGLXPixmap, req);
717 req->reqType = opcode;
718 req->glxCode = X_GLXCreateGLXPixmap;
719 req->screen = vis->screen;
720 req->visual = vis->visualid;
721 req->pixmap = pixmap;
722 req->glxpixmap = xid = XAllocID(dpy);
723 UnlockDisplay(dpy);
724 SyncHandle();
Michel Dänzeredb11782009-08-30 12:43:37 +0200725
Jesse Barnes4df13762011-05-06 10:31:24 -0700726 if (InitGLXDrawable(dpy, glxDraw, pixmap, req->glxpixmap)) {
727 free(glxDraw);
728 return None;
729 }
730
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700731#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Michel Dänzer9053bb02009-08-30 13:06:18 +0200732 do {
733 /* FIXME: Maybe delay __DRIdrawable creation until the drawable
734 * is actually bound to a context... */
Michel Dänzeredb11782009-08-30 12:43:37 +0200735
Michel Dänzer9053bb02009-08-30 13:06:18 +0200736 __GLXDRIdrawable *pdraw;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400737 struct glx_screen *psc;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400738 struct glx_config *config;
Michel Dänzeredb11782009-08-30 12:43:37 +0200739
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400740 psc = priv->screens[vis->screen];
Michel Dänzer9053bb02009-08-30 13:06:18 +0200741 if (psc->driScreen == NULL)
Adam Jackson48331042011-03-31 20:43:57 +0000742 return xid;
743
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400744 config = glx_config_find_visual(psc->visuals, vis->visualid);
Adam Jackson776a2a52011-06-01 11:33:48 -0400745 pdraw = psc->driScreen->createDrawable(psc, pixmap, xid, config);
Michel Dänzer9053bb02009-08-30 13:06:18 +0200746 if (pdraw == NULL) {
747 fprintf(stderr, "failed to create pixmap\n");
Adam Jackson48331042011-03-31 20:43:57 +0000748 xid = None;
Michel Dänzer9053bb02009-08-30 13:06:18 +0200749 break;
750 }
Michel Dänzeredb11782009-08-30 12:43:37 +0200751
Adam Jackson776a2a52011-06-01 11:33:48 -0400752 if (__glxHashInsert(priv->drawHash, xid, pdraw)) {
Michel Dänzer9053bb02009-08-30 13:06:18 +0200753 (*pdraw->destroyDrawable) (pdraw);
Adam Jackson48331042011-03-31 20:43:57 +0000754 xid = None;
755 break;
Michel Dänzer9053bb02009-08-30 13:06:18 +0200756 }
757 } while (0);
Adam Jackson48331042011-03-31 20:43:57 +0000758
759 if (xid == None) {
760 xGLXDestroyGLXPixmapReq *dreq;
761 LockDisplay(dpy);
762 GetReq(GLXDestroyGLXPixmap, dreq);
763 dreq->reqType = opcode;
764 dreq->glxCode = X_GLXDestroyGLXPixmap;
765 dreq->glxpixmap = xid;
766 UnlockDisplay(dpy);
767 SyncHandle();
768 }
Michel Dänzeredb11782009-08-30 12:43:37 +0200769#endif
770
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200771 return xid;
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700772#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000773}
774
775/*
776** Destroy the named pixmap
777*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400778_GLX_PUBLIC void
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200779glXDestroyGLXPixmap(Display * dpy, GLXPixmap glxpixmap)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000780{
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700781#ifdef GLX_USE_APPLEGL
782 if(apple_glx_pixmap_destroy(dpy, glxpixmap))
783 __glXSendError(dpy, GLXBadPixmap, glxpixmap, X_GLXDestroyPixmap, false);
784#else
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200785 xGLXDestroyGLXPixmapReq *req;
786 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000787
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200788 opcode = __glXSetupForCommand(dpy);
789 if (!opcode) {
790 return;
791 }
792
793 /* Send the glXDestroyGLXPixmap request */
794 LockDisplay(dpy);
795 GetReq(GLXDestroyGLXPixmap, req);
796 req->reqType = opcode;
797 req->glxCode = X_GLXDestroyGLXPixmap;
798 req->glxpixmap = glxpixmap;
799 UnlockDisplay(dpy);
800 SyncHandle();
Michel Dänzer9dfce362009-06-19 11:19:07 +0200801
Jesse Barnes4df13762011-05-06 10:31:24 -0700802 DestroyGLXDrawable(dpy, glxpixmap);
803
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700804#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200805 {
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400806 struct glx_display *const priv = __glXInitialize(dpy);
Kristian Høgsbergeeaab202010-07-22 22:36:37 -0400807 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, glxpixmap);
Michel Dänzer9dfce362009-06-19 11:19:07 +0200808
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +0200809 if (priv != NULL && pdraw != NULL) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200810 (*pdraw->destroyDrawable) (pdraw);
Kristian Høgsberge3e81962010-07-19 21:15:50 -0400811 __glxHashDelete(priv->drawHash, glxpixmap);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200812 }
813 }
Michel Dänzer9dfce362009-06-19 11:19:07 +0200814#endif
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700815#endif /* GLX_USE_APPLEGL */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000816}
817
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400818_GLX_PUBLIC void
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200819glXSwapBuffers(Display * dpy, GLXDrawable drawable)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000820{
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700821#ifdef GLX_USE_APPLEGL
Jeremy Huddleston279e4712011-06-05 18:22:47 -0400822 struct glx_context * gc = __glXGetCurrentContext();
Jeremy Huddleston Sequoiac1c4c182017-08-17 15:08:36 -0700823 if(gc != &dummyContext && apple_glx_is_current_drawable(dpy, gc->driContext, drawable)) {
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700824 apple_glx_swap_buffers(gc->driContext);
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700825 } else {
826 __glXSendError(dpy, GLXBadCurrentWindow, 0, X_GLXSwapBuffers, false);
827 }
828#else
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400829 struct glx_context *gc;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200830 GLXContextTag tag;
831 CARD8 opcode;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200832 xcb_connection_t *c;
Brian Paulb7f802e2009-01-18 09:59:07 -0700833
Eric Anholt4d01bea2011-02-14 18:38:33 -0800834 gc = __glXGetCurrentContext();
835
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700836#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Brian Paule975e182011-08-19 08:36:22 -0600837 {
838 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000839
Brian Paule975e182011-08-19 08:36:22 -0600840 if (pdraw != NULL) {
Bernard Kilarski2e3f0672016-06-07 13:33:33 +0300841 Bool flush = gc != &dummyContext && drawable == gc->currentDrawable;
Brian Paule975e182011-08-19 08:36:22 -0600842
Marek Olšák5b7e9b72012-11-13 17:06:37 +0100843 (*pdraw->psc->driScreen->swapBuffers)(pdraw, 0, 0, 0, flush);
Brian Paule975e182011-08-19 08:36:22 -0600844 return;
Eric Anholt4d01bea2011-02-14 18:38:33 -0800845 }
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200846 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000847#endif
848
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200849 opcode = __glXSetupForCommand(dpy);
850 if (!opcode) {
851 return;
852 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000853
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200854 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000855 ** The calling thread may or may not have a current context. If it
856 ** does, send the context tag so the server can do a flush.
857 */
Bernard Kilarski2e3f0672016-06-07 13:33:33 +0300858 if ((gc != &dummyContext) && (dpy == gc->currentDpy) &&
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200859 ((drawable == gc->currentDrawable)
860 || (drawable == gc->currentReadable))) {
861 tag = gc->currentContextTag;
862 }
863 else {
864 tag = 0;
865 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000866
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200867 c = XGetXCBConnection(dpy);
868 xcb_glx_swap_buffers(c, tag, drawable);
869 xcb_flush(c);
Jeremy Huddlestonad503c42010-04-01 11:01:31 -0700870#endif /* GLX_USE_APPLEGL */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000871}
872
873
874/*
875** Return configuration information for the given display, screen and
876** visual combination.
877*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -0400878_GLX_PUBLIC int
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200879glXGetConfig(Display * dpy, XVisualInfo * vis, int attribute,
880 int *value_return)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000881{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400882 struct glx_display *priv;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400883 struct glx_screen *psc;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400884 struct glx_config *config;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200885 int status;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000886
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200887 status = GetGLXPrivScreenConfig(dpy, vis->screen, &priv, &psc);
888 if (status == Success) {
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400889 config = glx_config_find_visual(psc->visuals, vis->visualid);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000890
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200891 /* Lookup attribute after first finding a match on the visual */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400892 if (config != NULL) {
893 return glx_config_get(config, attribute, value_return);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200894 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000895
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200896 status = GLX_BAD_VISUAL;
897 }
898
899 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000900 ** If we can't find the config for this visual, this visual is not
901 ** supported by the OpenGL implementation on the server.
902 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200903 if ((status == GLX_BAD_VISUAL) && (attribute == GLX_USE_GL)) {
Brian Paul482c43a2013-06-26 13:42:51 -0600904 *value_return = False;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200905 status = Success;
906 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000907
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200908 return status;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000909}
910
911/************************************************************************/
912
913static void
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400914init_fbconfig_for_chooser(struct glx_config * config,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200915 GLboolean fbconfig_style_tags)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000916{
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400917 memset(config, 0, sizeof(struct glx_config));
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200918 config->visualID = (XID) GLX_DONT_CARE;
919 config->visualType = GLX_DONT_CARE;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000920
Tomasz Lis4473af72013-07-17 13:49:20 +0200921 /* glXChooseFBConfig specifies different defaults for these properties than
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200922 * glXChooseVisual.
923 */
924 if (fbconfig_style_tags) {
925 config->rgbMode = GL_TRUE;
926 config->doubleBufferMode = GLX_DONT_CARE;
Fredrik Höglundf41c2f62014-02-13 21:07:09 +0100927 config->renderType = GLX_RGBA_BIT;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200928 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000929
Fredrik Höglundf41c2f62014-02-13 21:07:09 +0100930 config->drawableType = GLX_WINDOW_BIT;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200931 config->visualRating = GLX_DONT_CARE;
932 config->transparentPixel = GLX_NONE;
933 config->transparentRed = GLX_DONT_CARE;
934 config->transparentGreen = GLX_DONT_CARE;
935 config->transparentBlue = GLX_DONT_CARE;
936 config->transparentAlpha = GLX_DONT_CARE;
937 config->transparentIndex = GLX_DONT_CARE;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000938
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200939 config->xRenderable = GLX_DONT_CARE;
940 config->fbconfigID = (GLXFBConfigID) (GLX_DONT_CARE);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000941
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200942 config->swapMethod = GLX_DONT_CARE;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000943}
944
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200945#define MATCH_DONT_CARE( param ) \
946 do { \
Ian Romanick71a6fb12010-02-04 15:59:51 -0800947 if ( ((int) a-> param != (int) GLX_DONT_CARE) \
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200948 && (a-> param != b-> param) ) { \
949 return False; \
950 } \
951 } while ( 0 )
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000952
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200953#define MATCH_MINIMUM( param ) \
954 do { \
Ian Romanick71a6fb12010-02-04 15:59:51 -0800955 if ( ((int) a-> param != (int) GLX_DONT_CARE) \
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200956 && (a-> param > b-> param) ) { \
957 return False; \
958 } \
959 } while ( 0 )
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000960
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200961#define MATCH_EXACT( param ) \
962 do { \
963 if ( a-> param != b-> param) { \
964 return False; \
965 } \
966 } while ( 0 )
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000967
Kristian Høgsbergedb52532010-04-08 22:09:11 -0400968/* Test that all bits from a are contained in b */
969#define MATCH_MASK(param) \
970 do { \
Alexander Monakov9cda3562013-04-02 01:38:27 +0400971 if ( ((int) a-> param != (int) GLX_DONT_CARE) \
972 && ((a->param & ~b->param) != 0) ) { \
Kristian Høgsbergedb52532010-04-08 22:09:11 -0400973 return False; \
Alexander Monakov9cda3562013-04-02 01:38:27 +0400974 } \
Kristian Høgsbergedb52532010-04-08 22:09:11 -0400975 } while (0);
976
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000977/**
978 * Determine if two GLXFBConfigs are compatible.
979 *
980 * \param a Application specified config to test.
981 * \param b Server specified config to test against \c a.
982 */
983static Bool
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400984fbconfigs_compatible(const struct glx_config * const a,
985 const struct glx_config * const b)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000986{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200987 MATCH_DONT_CARE(doubleBufferMode);
988 MATCH_DONT_CARE(visualType);
989 MATCH_DONT_CARE(visualRating);
990 MATCH_DONT_CARE(xRenderable);
991 MATCH_DONT_CARE(fbconfigID);
992 MATCH_DONT_CARE(swapMethod);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000993
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200994 MATCH_MINIMUM(rgbBits);
995 MATCH_MINIMUM(numAuxBuffers);
996 MATCH_MINIMUM(redBits);
997 MATCH_MINIMUM(greenBits);
998 MATCH_MINIMUM(blueBits);
999 MATCH_MINIMUM(alphaBits);
1000 MATCH_MINIMUM(depthBits);
1001 MATCH_MINIMUM(stencilBits);
1002 MATCH_MINIMUM(accumRedBits);
1003 MATCH_MINIMUM(accumGreenBits);
1004 MATCH_MINIMUM(accumBlueBits);
1005 MATCH_MINIMUM(accumAlphaBits);
1006 MATCH_MINIMUM(sampleBuffers);
1007 MATCH_MINIMUM(maxPbufferWidth);
1008 MATCH_MINIMUM(maxPbufferHeight);
1009 MATCH_MINIMUM(maxPbufferPixels);
1010 MATCH_MINIMUM(samples);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001011
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001012 MATCH_DONT_CARE(stereoMode);
1013 MATCH_EXACT(level);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001014
Kristian Høgsbergedb52532010-04-08 22:09:11 -04001015 MATCH_MASK(drawableType);
1016 MATCH_MASK(renderType);
Neha Bhende6e06e282017-04-26 16:21:32 -07001017 MATCH_DONT_CARE(sRGBCapable);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001018
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001019 /* There is a bug in a few of the XFree86 DDX drivers. They contain
1020 * visuals with a "transparent type" of 0 when they really mean GLX_NONE.
1021 * Technically speaking, it is a bug in the DDX driver, but there is
1022 * enough of an installed base to work around the problem here. In any
1023 * case, 0 is not a valid value of the transparent type, so we'll treat 0
1024 * from the app as GLX_DONT_CARE. We'll consider GLX_NONE from the app and
1025 * 0 from the server to be a match to maintain backward compatibility with
1026 * the (broken) drivers.
1027 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001028
Ian Romanick71a6fb12010-02-04 15:59:51 -08001029 if (a->transparentPixel != (int) GLX_DONT_CARE && a->transparentPixel != 0) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001030 if (a->transparentPixel == GLX_NONE) {
1031 if (b->transparentPixel != GLX_NONE && b->transparentPixel != 0)
1032 return False;
1033 }
1034 else {
1035 MATCH_EXACT(transparentPixel);
1036 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001037
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001038 switch (a->transparentPixel) {
1039 case GLX_TRANSPARENT_RGB:
1040 MATCH_DONT_CARE(transparentRed);
1041 MATCH_DONT_CARE(transparentGreen);
1042 MATCH_DONT_CARE(transparentBlue);
1043 MATCH_DONT_CARE(transparentAlpha);
1044 break;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001045
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001046 case GLX_TRANSPARENT_INDEX:
1047 MATCH_DONT_CARE(transparentIndex);
1048 break;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001049
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001050 default:
1051 break;
1052 }
1053 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001054
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001055 return True;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001056}
1057
1058
1059/* There's some trickly language in the GLX spec about how this is supposed
1060 * to work. Basically, if a given component size is either not specified
1061 * or the requested size is zero, it is supposed to act like PERFER_SMALLER.
1062 * Well, that's really hard to do with the code as-is. This behavior is
1063 * closer to correct, but still not technically right.
1064 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001065#define PREFER_LARGER_OR_ZERO(comp) \
1066 do { \
1067 if ( ((*a)-> comp) != ((*b)-> comp) ) { \
1068 if ( ((*a)-> comp) == 0 ) { \
1069 return -1; \
1070 } \
1071 else if ( ((*b)-> comp) == 0 ) { \
1072 return 1; \
1073 } \
1074 else { \
1075 return ((*b)-> comp) - ((*a)-> comp) ; \
1076 } \
1077 } \
1078 } while( 0 )
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001079
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001080#define PREFER_LARGER(comp) \
1081 do { \
1082 if ( ((*a)-> comp) != ((*b)-> comp) ) { \
1083 return ((*b)-> comp) - ((*a)-> comp) ; \
1084 } \
1085 } while( 0 )
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001086
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001087#define PREFER_SMALLER(comp) \
1088 do { \
1089 if ( ((*a)-> comp) != ((*b)-> comp) ) { \
1090 return ((*a)-> comp) - ((*b)-> comp) ; \
1091 } \
1092 } while( 0 )
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001093
1094/**
1095 * Compare two GLXFBConfigs. This function is intended to be used as the
1096 * compare function passed in to qsort.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001097 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001098 * \returns If \c a is a "better" config, according to the specification of
1099 * SGIX_fbconfig, a number less than zero is returned. If \c b is
1100 * better, then a number greater than zero is return. If both are
1101 * equal, zero is returned.
1102 * \sa qsort, glXChooseVisual, glXChooseFBConfig, glXChooseFBConfigSGIX
1103 */
1104static int
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001105fbconfig_compare(struct glx_config **a, struct glx_config **b)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001106{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001107 /* The order of these comparisons must NOT change. It is defined by
Fredrik Höglund3616e862014-02-15 18:48:40 +01001108 * the GLX 1.4 specification.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001109 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001110
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001111 PREFER_SMALLER(visualSelectGroup);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001112
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001113 /* The sort order for the visualRating is GLX_NONE, GLX_SLOW, and
1114 * GLX_NON_CONFORMANT_CONFIG. It just so happens that this is the
1115 * numerical sort order of the enums (0x8000, 0x8001, and 0x800D).
1116 */
1117 PREFER_SMALLER(visualRating);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001118
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001119 /* This isn't quite right. It is supposed to compare the sum of the
1120 * components the user specifically set minimums for.
1121 */
1122 PREFER_LARGER_OR_ZERO(redBits);
1123 PREFER_LARGER_OR_ZERO(greenBits);
1124 PREFER_LARGER_OR_ZERO(blueBits);
1125 PREFER_LARGER_OR_ZERO(alphaBits);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001126
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001127 PREFER_SMALLER(rgbBits);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001128
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001129 if (((*a)->doubleBufferMode != (*b)->doubleBufferMode)) {
1130 /* Prefer single-buffer.
1131 */
1132 return (!(*a)->doubleBufferMode) ? -1 : 1;
1133 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001134
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001135 PREFER_SMALLER(numAuxBuffers);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001136
Fredrik Höglund3616e862014-02-15 18:48:40 +01001137 PREFER_SMALLER(sampleBuffers);
1138 PREFER_SMALLER(samples);
1139
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001140 PREFER_LARGER_OR_ZERO(depthBits);
1141 PREFER_SMALLER(stencilBits);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001142
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001143 /* This isn't quite right. It is supposed to compare the sum of the
1144 * components the user specifically set minimums for.
1145 */
1146 PREFER_LARGER_OR_ZERO(accumRedBits);
1147 PREFER_LARGER_OR_ZERO(accumGreenBits);
1148 PREFER_LARGER_OR_ZERO(accumBlueBits);
1149 PREFER_LARGER_OR_ZERO(accumAlphaBits);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001150
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001151 PREFER_SMALLER(visualType);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001152
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001153 /* None of the pbuffer or fbconfig specs say that this comparison needs
1154 * to happen at all, but it seems like it should.
1155 */
1156 PREFER_LARGER(maxPbufferWidth);
1157 PREFER_LARGER(maxPbufferHeight);
1158 PREFER_LARGER(maxPbufferPixels);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001159
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001160 return 0;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001161}
1162
1163
1164/**
1165 * Selects and sorts a subset of the supplied configs based on the attributes.
Emil Velikov78a74152016-09-30 11:01:28 +01001166 * This function forms to basis of \c glXChooseFBConfig and
1167 * \c glXChooseFBConfigSGIX.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001168 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001169 * \param configs Array of pointers to possible configs. The elements of
1170 * this array that do not meet the criteria will be set to
1171 * NULL. The remaining elements will be sorted according to
1172 * the various visual / FBConfig selection rules.
1173 * \param num_configs Number of elements in the \c configs array.
1174 * \param attribList Attributes used select from \c configs. This array is
Emil Velikov78a74152016-09-30 11:01:28 +01001175 * terminated by a \c None tag. The array is of the form
1176 * expected by \c glXChooseFBConfig (where every tag has a
1177 * value).
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001178 * \returns The number of valid elements left in \c configs.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001179 *
Emil Velikov78a74152016-09-30 11:01:28 +01001180 * \sa glXChooseFBConfig, glXChooseFBConfigSGIX
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001181 */
1182static int
Emil Velikov78a74152016-09-30 11:01:28 +01001183choose_fbconfig(struct glx_config ** configs, int num_configs,
1184 const int *attribList)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001185{
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001186 struct glx_config test_config;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001187 int base;
1188 int i;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001189
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001190 /* This is a fairly direct implementation of the selection method
1191 * described by GLX_SGIX_fbconfig. Start by culling out all the
1192 * configs that are not compatible with the selected parameter
1193 * list.
1194 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001195
Emil Velikov78a74152016-09-30 11:01:28 +01001196 init_fbconfig_for_chooser(&test_config, GL_TRUE);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001197 __glXInitializeVisualConfigFromTags(&test_config, 512,
1198 (const INT32 *) attribList,
Emil Velikov78a74152016-09-30 11:01:28 +01001199 GL_TRUE, GL_TRUE);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001200
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001201 base = 0;
1202 for (i = 0; i < num_configs; i++) {
1203 if (fbconfigs_compatible(&test_config, configs[i])) {
1204 configs[base] = configs[i];
1205 base++;
1206 }
1207 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001208
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001209 if (base == 0) {
1210 return 0;
1211 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001212
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001213 if (base < num_configs) {
1214 (void) memset(&configs[base], 0, sizeof(void *) * (num_configs - base));
1215 }
1216
1217 /* After the incompatible configs are removed, the resulting
1218 * list is sorted according to the rules set out in the various
1219 * specifications.
1220 */
1221
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001222 qsort(configs, base, sizeof(struct glx_config *),
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001223 (int (*)(const void *, const void *)) fbconfig_compare);
1224 return base;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001225}
1226
1227
1228
1229
1230/*
1231** Return the visual that best matches the template. Return None if no
1232** visual matches the template.
1233*/
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001234_GLX_PUBLIC XVisualInfo *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001235glXChooseVisual(Display * dpy, int screen, int *attribList)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001236{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001237 XVisualInfo *visualList = NULL;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001238 struct glx_display *priv;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001239 struct glx_screen *psc;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001240 struct glx_config test_config;
1241 struct glx_config *config;
1242 struct glx_config *best_config = NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001243
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001244 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001245 ** Get a list of all visuals, return if list is empty
1246 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001247 if (GetGLXPrivScreenConfig(dpy, screen, &priv, &psc) != Success) {
1248 return None;
1249 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001250
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001251
1252 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001253 ** Build a template from the defaults and the attribute list
1254 ** Free visual list and return if an unexpected token is encountered
1255 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001256 init_fbconfig_for_chooser(&test_config, GL_FALSE);
1257 __glXInitializeVisualConfigFromTags(&test_config, 512,
1258 (const INT32 *) attribList,
1259 GL_TRUE, GL_FALSE);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001260
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001261 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001262 ** Eliminate visuals that don't meet minimum requirements
1263 ** Compute a score for those that do
1264 ** Remember which visual, if any, got the highest score
Michel Dänzer46b81b02009-05-12 08:01:22 +02001265 ** If no visual is acceptable, return None
1266 ** Otherwise, create an XVisualInfo list with just the selected X visual
1267 ** and return this.
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001268 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001269 for (config = psc->visuals; config != NULL; config = config->next) {
1270 if (fbconfigs_compatible(&test_config, config)
1271 && ((best_config == NULL) ||
1272 (fbconfig_compare (&config, &best_config) < 0))) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001273 XVisualInfo visualTemplate;
1274 XVisualInfo *newList;
1275 int i;
Michel Dänzer46b81b02009-05-12 08:01:22 +02001276
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001277 visualTemplate.screen = screen;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001278 visualTemplate.visualid = config->visualID;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001279 newList = XGetVisualInfo(dpy, VisualScreenMask | VisualIDMask,
1280 &visualTemplate, &i);
Michel Dänzer46b81b02009-05-12 08:01:22 +02001281
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001282 if (newList) {
Matt Turner7c7b7b02012-09-04 22:52:36 -07001283 free(visualList);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001284 visualList = newList;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001285 best_config = config;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001286 }
1287 }
1288 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001289
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001290#ifdef GLX_USE_APPLEGL
Eric Engestrom3fdbc462017-09-08 11:56:02 +01001291 if(visualList && env_var_as_boolean("LIBGL_DUMP_VISUALID", false)) {
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001292 printf("visualid 0x%lx\n", visualList[0].visualid);
1293 }
1294#endif
1295
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001296 return visualList;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001297}
1298
1299
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001300_GLX_PUBLIC const char *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001301glXQueryExtensionsString(Display * dpy, int screen)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001302{
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001303 struct glx_screen *psc;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001304 struct glx_display *priv;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001305
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001306 if (GetGLXPrivScreenConfig(dpy, screen, &priv, &psc) != Success) {
1307 return NULL;
1308 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001309
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001310 if (!psc->effectiveGLXexts) {
1311 if (!psc->serverGLXexts) {
1312 psc->serverGLXexts =
1313 __glXQueryServerString(dpy, priv->majorOpcode, screen,
1314 GLX_EXTENSIONS);
1315 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001316
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001317 __glXCalculateUsableExtensions(psc,
Jeremy Huddleston80b280d2010-04-02 01:35:19 -07001318#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001319 (psc->driScreen != NULL),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001320#else
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001321 GL_FALSE,
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001322#endif
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001323 priv->minorVersion);
1324 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001325
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001326 return psc->effectiveGLXexts;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001327}
1328
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001329_GLX_PUBLIC const char *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001330glXGetClientString(Display * dpy, int name)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001331{
Ian Romanick26b2bee2010-02-04 15:47:54 -08001332 (void) dpy;
1333
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001334 switch (name) {
1335 case GLX_VENDOR:
1336 return (__glXGLXClientVendorName);
1337 case GLX_VERSION:
1338 return (__glXGLXClientVersion);
1339 case GLX_EXTENSIONS:
1340 return (__glXGetClientExtensions());
1341 default:
1342 return NULL;
1343 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001344}
1345
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001346_GLX_PUBLIC const char *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001347glXQueryServerString(Display * dpy, int screen, int name)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001348{
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001349 struct glx_screen *psc;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001350 struct glx_display *priv;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001351 const char **str;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001352
1353
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001354 if (GetGLXPrivScreenConfig(dpy, screen, &priv, &psc) != Success) {
1355 return NULL;
1356 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001357
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001358 switch (name) {
1359 case GLX_VENDOR:
1360 str = &priv->serverGLXvendor;
1361 break;
1362 case GLX_VERSION:
1363 str = &priv->serverGLXversion;
1364 break;
1365 case GLX_EXTENSIONS:
1366 str = &psc->serverGLXexts;
1367 break;
1368 default:
1369 return NULL;
1370 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001371
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001372 if (*str == NULL) {
1373 *str = __glXQueryServerString(dpy, priv->majorOpcode, screen, name);
1374 }
1375
1376 return *str;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001377}
1378
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001379
1380/*
1381** EXT_import_context
1382*/
1383
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001384_GLX_PUBLIC Display *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001385glXGetCurrentDisplay(void)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001386{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001387 struct glx_context *gc = __glXGetCurrentContext();
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03001388 if (gc == &dummyContext)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001389 return NULL;
1390 return gc->currentDpy;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001391}
1392
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001393_GLX_PUBLIC
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001394GLX_ALIAS(Display *, glXGetCurrentDisplayEXT, (void), (),
1395 glXGetCurrentDisplay)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001396
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001397#ifndef GLX_USE_APPLEGL
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001398_GLX_PUBLIC GLXContext
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001399glXImportContextEXT(Display *dpy, GLXContextID contextID)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001400{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001401 struct glx_display *priv = __glXInitialize(dpy);
Ian Romanick5a849e82011-12-07 11:15:14 -08001402 struct glx_screen *psc = NULL;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001403 xGLXQueryContextReply reply;
1404 CARD8 opcode;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001405 struct glx_context *ctx;
Ian Romanick5a849e82011-12-07 11:15:14 -08001406
1407 /* This GLX implementation knows about 5 different properties, so
1408 * allow the server to send us one of each.
1409 */
1410 int propList[5 * 2], *pProp, nPropListBytes;
1411 int numProps;
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001412 int i, renderType;
1413 XID share;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001414 struct glx_config *mode;
Ian Romanick5a849e82011-12-07 11:15:14 -08001415 uint32_t fbconfigID = 0;
1416 uint32_t visualID = 0;
Brian Paul622b1fc2013-03-13 08:35:21 -06001417 uint32_t screen = 0;
Ian Romanick5a849e82011-12-07 11:15:14 -08001418 Bool got_screen = False;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001419
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +02001420 if (priv == NULL)
1421 return NULL;
1422
Ian Romanicked4a65c2011-12-07 16:13:02 -08001423 /* The GLX_EXT_import_context spec says:
1424 *
1425 * "If <contextID> does not refer to a valid context, then a BadContext
1426 * error is generated; if <contextID> refers to direct rendering
1427 * context then no error is generated but glXImportContextEXT returns
1428 * NULL."
1429 *
1430 * If contextID is None, generate BadContext on the client-side. Other
1431 * sorts of invalid contexts will be detected by the server in the
1432 * __glXIsDirect call.
1433 */
1434 if (contextID == None) {
1435 __glXSendError(dpy, GLXBadContext, contextID, X_GLXIsDirect, false);
1436 return NULL;
1437 }
1438
1439 if (__glXIsDirect(dpy, contextID))
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001440 return NULL;
1441
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001442 opcode = __glXSetupForCommand(dpy);
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001443 if (!opcode)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001444 return 0;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001445
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001446 /* Send the glXQueryContextInfoEXT request */
1447 LockDisplay(dpy);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001448
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001449 if (priv->majorVersion > 1 || priv->minorVersion >= 3) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001450 xGLXQueryContextReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001451
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001452 GetReq(GLXQueryContext, req);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001453
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001454 req->reqType = opcode;
1455 req->glxCode = X_GLXQueryContext;
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001456 req->context = contextID;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001457 }
1458 else {
1459 xGLXVendorPrivateReq *vpreq;
1460 xGLXQueryContextInfoEXTReq *req;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001461
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001462 GetReqExtra(GLXVendorPrivate,
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001463 sz_xGLXQueryContextInfoEXTReq - sz_xGLXVendorPrivateReq,
1464 vpreq);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001465 req = (xGLXQueryContextInfoEXTReq *) vpreq;
1466 req->reqType = opcode;
1467 req->glxCode = X_GLXVendorPrivateWithReply;
1468 req->vendorCode = X_GLXvop_QueryContextInfoEXT;
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001469 req->context = contextID;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001470 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001471
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001472 _XReply(dpy, (xReply *) & reply, 0, False);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001473
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001474 if (reply.n <= __GLX_MAX_CONTEXT_PROPS)
1475 nPropListBytes = reply.n * 2 * sizeof propList[0];
1476 else
1477 nPropListBytes = 0;
1478 _XRead(dpy, (char *) propList, nPropListBytes);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001479 UnlockDisplay(dpy);
1480 SyncHandle();
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001481
Ian Romanick5a849e82011-12-07 11:15:14 -08001482 numProps = nPropListBytes / (2 * sizeof(propList[0]));
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001483 share = None;
1484 mode = NULL;
Tomasz Lis36259a12013-07-17 13:49:14 +02001485 renderType = GLX_RGBA_TYPE; /* By default, assume RGBA context */
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001486 pProp = propList;
1487
Ian Romanick5a849e82011-12-07 11:15:14 -08001488 for (i = 0, pProp = propList; i < numProps; i++, pProp += 2)
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001489 switch (pProp[0]) {
Ian Romanick5a849e82011-12-07 11:15:14 -08001490 case GLX_SCREEN:
1491 screen = pProp[1];
1492 got_screen = True;
1493 break;
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001494 case GLX_SHARE_CONTEXT_EXT:
1495 share = pProp[1];
1496 break;
1497 case GLX_VISUAL_ID_EXT:
Ian Romanick5a849e82011-12-07 11:15:14 -08001498 visualID = pProp[1];
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001499 break;
1500 case GLX_FBCONFIG_ID:
Ian Romanick5a849e82011-12-07 11:15:14 -08001501 fbconfigID = pProp[1];
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001502 break;
1503 case GLX_RENDER_TYPE:
1504 renderType = pProp[1];
1505 break;
1506 }
1507
Ian Romanick5a849e82011-12-07 11:15:14 -08001508 if (!got_screen)
1509 return NULL;
1510
1511 psc = GetGLXScreenConfigs(dpy, screen);
1512 if (psc == NULL)
1513 return NULL;
1514
1515 if (fbconfigID != 0) {
1516 mode = glx_config_find_fbconfig(psc->configs, fbconfigID);
1517 } else if (visualID != 0) {
1518 mode = glx_config_find_visual(psc->visuals, visualID);
1519 }
1520
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001521 if (mode == NULL)
1522 return NULL;
1523
1524 ctx = indirect_create_context(psc, mode, NULL, renderType);
1525 if (ctx == NULL)
1526 return NULL;
1527
1528 ctx->xid = contextID;
1529 ctx->imported = GL_TRUE;
1530 ctx->share_xid = share;
1531
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001532 return (GLXContext) ctx;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001533}
1534
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001535#endif
1536
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001537_GLX_PUBLIC int
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001538glXQueryContext(Display * dpy, GLXContext ctx_user, int attribute, int *value)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001539{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001540 struct glx_context *ctx = (struct glx_context *) ctx_user;
1541
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001542 switch (attribute) {
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001543 case GLX_SHARE_CONTEXT_EXT:
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001544 *value = ctx->share_xid;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001545 break;
1546 case GLX_VISUAL_ID_EXT:
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001547 *value = ctx->config ? ctx->config->visualID : None;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001548 break;
1549 case GLX_SCREEN:
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001550 *value = ctx->screen;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001551 break;
1552 case GLX_FBCONFIG_ID:
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001553 *value = ctx->config ? ctx->config->fbconfigID : None;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001554 break;
1555 case GLX_RENDER_TYPE:
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -04001556 *value = ctx->renderType;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001557 break;
1558 default:
1559 return GLX_BAD_ATTRIBUTE;
1560 }
1561 return Success;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001562}
1563
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001564_GLX_PUBLIC
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001565GLX_ALIAS(int, glXQueryContextInfoEXT,
1566 (Display * dpy, GLXContext ctx, int attribute, int *value),
1567 (dpy, ctx, attribute, value), glXQueryContext)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001568
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001569_GLX_PUBLIC GLXContextID glXGetContextIDEXT(const GLXContext ctx_user)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001570{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001571 struct glx_context *ctx = (struct glx_context *) ctx_user;
1572
Ian Romanick3b9b4222011-12-07 11:37:01 -08001573 return (ctx == NULL) ? None : ctx->xid;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001574}
1575
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001576_GLX_PUBLIC void
Ian Romanick4dbd13c2011-12-07 13:31:27 -08001577glXFreeContextEXT(Display *dpy, GLXContext ctx)
1578{
1579 struct glx_context *gc = (struct glx_context *) ctx;
1580
1581 if (gc == NULL || gc->xid == None)
1582 return;
1583
1584 /* The GLX_EXT_import_context spec says:
1585 *
1586 * "glXFreeContext does not free the server-side context information or
1587 * the XID associated with the server-side context."
1588 *
1589 * Don't send any protocol. Just destroy the client-side tracking of the
1590 * context. Also, only release the context structure if it's not current.
1591 */
1592 __glXLock();
1593 if (gc->currentDpy) {
1594 gc->xid = None;
1595 } else {
1596 gc->vtable->destroy(gc);
1597 }
1598 __glXUnlock();
1599}
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001600
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001601_GLX_PUBLIC GLXFBConfig *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001602glXChooseFBConfig(Display * dpy, int screen,
1603 const int *attribList, int *nitems)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001604{
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001605 struct glx_config **config_list;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001606 int list_size;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001607
1608
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001609 config_list = (struct glx_config **)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001610 glXGetFBConfigs(dpy, screen, &list_size);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001611
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001612 if ((config_list != NULL) && (list_size > 0) && (attribList != NULL)) {
Emil Velikov78a74152016-09-30 11:01:28 +01001613 list_size = choose_fbconfig(config_list, list_size, attribList);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001614 if (list_size == 0) {
Matt Turner7c7b7b02012-09-04 22:52:36 -07001615 free(config_list);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001616 config_list = NULL;
1617 }
1618 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001619
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001620 *nitems = list_size;
1621 return (GLXFBConfig *) config_list;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001622}
1623
1624
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001625_GLX_PUBLIC GLXContext
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001626glXCreateNewContext(Display * dpy, GLXFBConfig fbconfig,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001627 int renderType, GLXContext shareList, Bool allowDirect)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001628{
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001629 struct glx_config *config = (struct glx_config *) fbconfig;
Daniel Czarnowskicf804b42016-02-10 09:36:05 -08001630 struct glx_config **config_list;
1631 int list_size;
1632 unsigned i;
1633
1634 if (!config) {
1635 __glXSendError(dpy, GLXBadFBConfig, 0, X_GLXCreateNewContext, false);
1636 return NULL;
1637 }
1638
1639 config_list = (struct glx_config **)
Mario Kleiner0c94ed02016-10-11 20:42:03 +02001640 glXGetFBConfigs(dpy, config->screen, &list_size);
Daniel Czarnowskicf804b42016-02-10 09:36:05 -08001641
1642 for (i = 0; i < list_size; i++) {
1643 if (config_list[i] == config)
1644 break;
1645 }
1646 free(config_list);
1647
1648 if (i == list_size) {
1649 __glXSendError(dpy, GLXBadFBConfig, 0, X_GLXCreateNewContext, false);
1650 return NULL;
1651 }
Ian Romanick7bcfb662010-02-04 16:37:59 -08001652
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001653 return CreateContext(dpy, config->fbconfigID, config, shareList,
1654 allowDirect, X_GLXCreateNewContext, renderType,
1655 config->screen);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001656}
1657
1658
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001659_GLX_PUBLIC GLXDrawable
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001660glXGetCurrentReadDrawable(void)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001661{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001662 struct glx_context *gc = __glXGetCurrentContext();
1663
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001664 return gc->currentReadable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001665}
1666
1667
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001668_GLX_PUBLIC GLXFBConfig *
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001669glXGetFBConfigs(Display * dpy, int screen, int *nelements)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001670{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001671 struct glx_display *priv = __glXInitialize(dpy);
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001672 struct glx_config **config_list = NULL;
1673 struct glx_config *config;
1674 unsigned num_configs = 0;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001675 int i;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001676
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001677 *nelements = 0;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001678 if (priv && (priv->screens != NULL)
Jiri Slabya6ce91f2016-05-17 08:35:29 +02001679 && (screen >= 0) && (screen < ScreenCount(dpy))
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001680 && (priv->screens[screen]->configs != NULL)
1681 && (priv->screens[screen]->configs->fbconfigID
Ian Romanick71a6fb12010-02-04 15:59:51 -08001682 != (int) GLX_DONT_CARE)) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001683
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001684 for (config = priv->screens[screen]->configs; config != NULL;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001685 config = config->next) {
1686 if (config->fbconfigID != (int) GLX_DONT_CARE) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001687 num_configs++;
1688 }
1689 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001690
Matt Turner7c7b7b02012-09-04 22:52:36 -07001691 config_list = malloc(num_configs * sizeof *config_list);
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001692 if (config_list != NULL) {
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001693 *nelements = num_configs;
1694 i = 0;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001695 for (config = priv->screens[screen]->configs; config != NULL;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001696 config = config->next) {
1697 if (config->fbconfigID != (int) GLX_DONT_CARE) {
1698 config_list[i] = config;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001699 i++;
1700 }
1701 }
1702 }
1703 }
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001704
1705 return (GLXFBConfig *) config_list;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001706}
1707
1708
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001709_GLX_PUBLIC int
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001710glXGetFBConfigAttrib(Display * dpy, GLXFBConfig fbconfig,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001711 int attribute, int *value)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001712{
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001713 struct glx_config *config = ValidateGLXFBConfig(dpy, fbconfig);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001714
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001715 if (config == NULL)
1716 return GLXBadFBConfig;
1717
1718 return glx_config_get(config, attribute, value);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001719}
1720
1721
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001722_GLX_PUBLIC XVisualInfo *
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001723glXGetVisualFromFBConfig(Display * dpy, GLXFBConfig fbconfig)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001724{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001725 XVisualInfo visualTemplate;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001726 struct glx_config *config = (struct glx_config *) fbconfig;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001727 int count;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001728
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001729 /*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001730 ** Get a list of all visuals, return if list is empty
1731 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001732 visualTemplate.visualid = config->visualID;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001733 return XGetVisualInfo(dpy, VisualIDMask, &visualTemplate, &count);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001734}
1735
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001736#ifndef GLX_USE_APPLEGL
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001737/*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001738** GLX_SGI_swap_control
1739*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001740static int
1741__glXSwapIntervalSGI(int interval)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001742{
1743 xGLXVendorPrivateReq *req;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001744 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001745 struct glx_screen *psc;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001746 Display *dpy;
1747 CARD32 *interval_ptr;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001748 CARD8 opcode;
1749
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03001750 if (gc == &dummyContext) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001751 return GLX_BAD_CONTEXT;
1752 }
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001753
1754 if (interval <= 0) {
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001755 return GLX_BAD_VALUE;
1756 }
1757
Jesse Barnesefc82e72009-11-10 13:28:01 -08001758 psc = GetGLXScreenConfigs( gc->currentDpy, gc->screen);
1759
Vinson Lee16f568a2010-04-01 00:10:28 -07001760#ifdef GLX_DIRECT_RENDERING
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +02001761 if (gc->isDirect && psc && psc->driScreen &&
1762 psc->driScreen->setSwapInterval) {
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04001763 __GLXDRIdrawable *pdraw =
1764 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
Nicolai Hähnlef446f3f2017-02-02 18:06:27 +01001765 /* Simply ignore the command if the GLX drawable has been destroyed but
1766 * the context is still bound.
1767 */
1768 if (pdraw)
1769 psc->driScreen->setSwapInterval(pdraw, interval);
Jesse Barnesefc82e72009-11-10 13:28:01 -08001770 return 0;
1771 }
Vinson Lee16f568a2010-04-01 00:10:28 -07001772#endif
Jesse Barnesefc82e72009-11-10 13:28:01 -08001773
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001774 dpy = gc->currentDpy;
1775 opcode = __glXSetupForCommand(dpy);
1776 if (!opcode) {
1777 return 0;
1778 }
1779
1780 /* Send the glXSwapIntervalSGI request */
1781 LockDisplay(dpy);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001782 GetReqExtra(GLXVendorPrivate, sizeof(CARD32), req);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001783 req->reqType = opcode;
1784 req->glxCode = X_GLXVendorPrivate;
1785 req->vendorCode = X_GLXvop_SwapIntervalSGI;
1786 req->contextTag = gc->currentContextTag;
1787
Ian Romanicka70d5642006-08-30 23:15:02 +00001788 interval_ptr = (CARD32 *) (req + 1);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001789 *interval_ptr = interval;
1790
1791 UnlockDisplay(dpy);
1792 SyncHandle();
1793 XFlush(dpy);
1794
1795 return 0;
1796}
1797
1798
1799/*
1800** GLX_MESA_swap_control
1801*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001802static int
1803__glXSwapIntervalMESA(unsigned int interval)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001804{
Kristian Høgsberg089fc372010-07-19 16:39:53 -04001805#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001806 struct glx_context *gc = __glXGetCurrentContext();
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001807
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03001808 if (gc != &dummyContext && gc->isDirect) {
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001809 struct glx_screen *psc;
Jesse Barnesefc82e72009-11-10 13:28:01 -08001810
1811 psc = GetGLXScreenConfigs( gc->currentDpy, gc->screen);
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +02001812 if (psc && psc->driScreen && psc->driScreen->setSwapInterval) {
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04001813 __GLXDRIdrawable *pdraw =
1814 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
Nicolai Hähnlef446f3f2017-02-02 18:06:27 +01001815
1816 /* Simply ignore the command if the GLX drawable has been destroyed but
1817 * the context is still bound.
1818 */
1819 if (!pdraw)
1820 return 0;
1821
1822 return psc->driScreen->setSwapInterval(pdraw, interval);
Jesse Barnesefc82e72009-11-10 13:28:01 -08001823 }
1824 }
Vinson Lee16f568a2010-04-01 00:10:28 -07001825#endif
Jesse Barnesefc82e72009-11-10 13:28:01 -08001826
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001827 return GLX_BAD_CONTEXT;
1828}
Brian Paul841a8232006-03-09 16:25:46 +00001829
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001830
1831static int
1832__glXGetSwapIntervalMESA(void)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001833{
Kristian Høgsberg089fc372010-07-19 16:39:53 -04001834#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001835 struct glx_context *gc = __glXGetCurrentContext();
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001836
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03001837 if (gc != &dummyContext && gc->isDirect) {
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001838 struct glx_screen *psc;
Jesse Barnesefc82e72009-11-10 13:28:01 -08001839
1840 psc = GetGLXScreenConfigs( gc->currentDpy, gc->screen);
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +02001841 if (psc && psc->driScreen && psc->driScreen->getSwapInterval) {
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04001842 __GLXDRIdrawable *pdraw =
1843 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
Nicolai Hähnlef446f3f2017-02-02 18:06:27 +01001844 if (pdraw)
1845 return psc->driScreen->getSwapInterval(pdraw);
Jesse Barnesefc82e72009-11-10 13:28:01 -08001846 }
1847 }
Vinson Lee67776f62010-04-02 00:12:59 -07001848#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001849
1850 return 0;
1851}
1852
1853
1854/*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001855** GLX_SGI_video_sync
1856*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001857static int
1858__glXGetVideoSyncSGI(unsigned int *count)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001859{
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001860 int64_t ust, msc, sbc;
1861 int ret;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001862 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001863 struct glx_screen *psc;
Vinson Lee67776f62010-04-02 00:12:59 -07001864#ifdef GLX_DIRECT_RENDERING
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001865 __GLXDRIdrawable *pdraw;
Vinson Lee67776f62010-04-02 00:12:59 -07001866#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001867
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03001868 if (gc == &dummyContext)
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001869 return GLX_BAD_CONTEXT;
1870
Vinson Lee16f568a2010-04-01 00:10:28 -07001871#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergc491e582010-07-28 15:33:09 -04001872 if (!gc->isDirect)
Vinson Lee16f568a2010-04-01 00:10:28 -07001873 return GLX_BAD_CONTEXT;
1874#endif
1875
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001876 psc = GetGLXScreenConfigs(gc->currentDpy, gc->screen);
Vinson Lee67776f62010-04-02 00:12:59 -07001877#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04001878 pdraw = GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
Vinson Lee67776f62010-04-02 00:12:59 -07001879#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001880
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001881 /* FIXME: Looking at the GLX_SGI_video_sync spec in the extension registry,
1882 * FIXME: there should be a GLX encoding for this call. I can find no
1883 * FIXME: documentation for the GLX encoding.
1884 */
Vinson Lee67776f62010-04-02 00:12:59 -07001885#ifdef GLX_DIRECT_RENDERING
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +02001886 if (psc && psc->driScreen && psc->driScreen->getDrawableMSC) {
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001887 ret = psc->driScreen->getDrawableMSC(psc, pdraw, &ust, &msc, &sbc);
1888 *count = (unsigned) msc;
1889 return (ret == True) ? 0 : GLX_BAD_CONTEXT;
1890 }
Vinson Lee67776f62010-04-02 00:12:59 -07001891#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001892
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001893 return GLX_BAD_CONTEXT;
1894}
1895
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001896static int
1897__glXWaitVideoSyncSGI(int divisor, int remainder, unsigned int *count)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001898{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04001899 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001900 struct glx_screen *psc;
Vinson Lee67776f62010-04-02 00:12:59 -07001901#ifdef GLX_DIRECT_RENDERING
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001902 __GLXDRIdrawable *pdraw;
Vinson Lee67776f62010-04-02 00:12:59 -07001903#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001904 int64_t ust, msc, sbc;
1905 int ret;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001906
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001907 if (divisor <= 0 || remainder < 0)
1908 return GLX_BAD_VALUE;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001909
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03001910 if (gc == &dummyContext)
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001911 return GLX_BAD_CONTEXT;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001912
Vinson Lee16f568a2010-04-01 00:10:28 -07001913#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergc491e582010-07-28 15:33:09 -04001914 if (!gc->isDirect)
Vinson Lee16f568a2010-04-01 00:10:28 -07001915 return GLX_BAD_CONTEXT;
1916#endif
1917
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001918 psc = GetGLXScreenConfigs( gc->currentDpy, gc->screen);
Vinson Lee67776f62010-04-02 00:12:59 -07001919#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04001920 pdraw = GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
Vinson Lee67776f62010-04-02 00:12:59 -07001921#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001922
Vinson Lee67776f62010-04-02 00:12:59 -07001923#ifdef GLX_DIRECT_RENDERING
Juha-Pekka Heikkilad28e92f2014-02-07 14:43:57 +02001924 if (psc && psc->driScreen && psc->driScreen->waitForMSC) {
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001925 ret = psc->driScreen->waitForMSC(pdraw, 0, divisor, remainder, &ust, &msc,
1926 &sbc);
1927 *count = (unsigned) msc;
1928 return (ret == True) ? 0 : GLX_BAD_CONTEXT;
1929 }
Vinson Lee67776f62010-04-02 00:12:59 -07001930#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07001931
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001932 return GLX_BAD_CONTEXT;
1933}
1934
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001935#endif /* GLX_USE_APPLEGL */
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001936
1937/*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001938** GLX_SGIX_fbconfig
1939** Many of these functions are aliased to GLX 1.3 entry points in the
1940** GLX_functions table.
1941*/
1942
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001943_GLX_PUBLIC
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001944GLX_ALIAS(int, glXGetFBConfigAttribSGIX,
1945 (Display * dpy, GLXFBConfigSGIX config, int attribute, int *value),
1946 (dpy, config, attribute, value), glXGetFBConfigAttrib)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001947
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001948_GLX_PUBLIC GLX_ALIAS(GLXFBConfigSGIX *, glXChooseFBConfigSGIX,
Brian Paulef9cd842009-09-29 09:58:47 -06001949 (Display * dpy, int screen, int *attrib_list,
1950 int *nelements), (dpy, screen, attrib_list, nelements),
1951 glXChooseFBConfig)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001952
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001953_GLX_PUBLIC GLX_ALIAS(XVisualInfo *, glXGetVisualFromFBConfigSGIX,
Brian Paulef9cd842009-09-29 09:58:47 -06001954 (Display * dpy, GLXFBConfigSGIX config),
1955 (dpy, config), glXGetVisualFromFBConfig)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001956
Kyle Brenneman22a9e002016-05-11 14:01:53 -04001957_GLX_PUBLIC GLXPixmap
Brian Paulef9cd842009-09-29 09:58:47 -06001958glXCreateGLXPixmapWithConfigSGIX(Display * dpy,
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001959 GLXFBConfigSGIX fbconfig,
Brian Paulef9cd842009-09-29 09:58:47 -06001960 Pixmap pixmap)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001961{
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001962#ifndef GLX_USE_APPLEGL
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001963 xGLXVendorPrivateWithReplyReq *vpreq;
1964 xGLXCreateGLXPixmapWithConfigSGIXReq *req;
1965 GLXPixmap xid = None;
1966 CARD8 opcode;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04001967 struct glx_screen *psc;
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001968#endif
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001969 struct glx_config *config = (struct glx_config *) fbconfig;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001970
1971
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001972 if ((dpy == NULL) || (config == NULL)) {
1973 return None;
1974 }
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001975#ifdef GLX_USE_APPLEGL
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001976 if(apple_glx_pixmap_create(dpy, config->screen, pixmap, config))
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001977 return None;
1978 return pixmap;
1979#else
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001980
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001981 psc = GetGLXScreenConfigs(dpy, config->screen);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001982 if ((psc != NULL)
1983 && __glXExtensionBitIsEnabled(psc, SGIX_fbconfig_bit)) {
1984 opcode = __glXSetupForCommand(dpy);
1985 if (!opcode) {
1986 return None;
1987 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001988
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02001989 /* Send the glXCreateGLXPixmapWithConfigSGIX request */
1990 LockDisplay(dpy);
1991 GetReqExtra(GLXVendorPrivateWithReply,
1992 sz_xGLXCreateGLXPixmapWithConfigSGIXReq -
1993 sz_xGLXVendorPrivateWithReplyReq, vpreq);
1994 req = (xGLXCreateGLXPixmapWithConfigSGIXReq *) vpreq;
1995 req->reqType = opcode;
1996 req->glxCode = X_GLXVendorPrivateWithReply;
1997 req->vendorCode = X_GLXvop_CreateGLXPixmapWithConfigSGIX;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04001998 req->screen = config->screen;
1999 req->fbconfig = config->fbconfigID;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002000 req->pixmap = pixmap;
2001 req->glxpixmap = xid = XAllocID(dpy);
2002 UnlockDisplay(dpy);
2003 SyncHandle();
2004 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002005
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002006 return xid;
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002007#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002008}
2009
Kyle Brenneman22a9e002016-05-11 14:01:53 -04002010_GLX_PUBLIC GLXContext
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002011glXCreateContextWithConfigSGIX(Display * dpy,
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04002012 GLXFBConfigSGIX fbconfig, int renderType,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002013 GLXContext shareList, Bool allowDirect)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002014{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002015 GLXContext gc = NULL;
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04002016 struct glx_config *config = (struct glx_config *) fbconfig;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002017 struct glx_screen *psc;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002018
2019
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002020 if ((dpy == NULL) || (config == NULL)) {
2021 return None;
2022 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002023
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04002024 psc = GetGLXScreenConfigs(dpy, config->screen);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002025 if ((psc != NULL)
2026 && __glXExtensionBitIsEnabled(psc, SGIX_fbconfig_bit)) {
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04002027 gc = CreateContext(dpy, config->fbconfigID, config, shareList,
Ian Romanick22430292010-02-04 16:43:46 -08002028 allowDirect,
Ian Romanick7bcfb662010-02-04 16:37:59 -08002029 X_GLXvop_CreateContextWithConfigSGIX, renderType,
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04002030 config->screen);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002031 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002032
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002033 return gc;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002034}
2035
2036
Kyle Brenneman22a9e002016-05-11 14:01:53 -04002037_GLX_PUBLIC GLXFBConfigSGIX
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002038glXGetFBConfigFromVisualSGIX(Display * dpy, XVisualInfo * vis)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002039{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04002040 struct glx_display *priv;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002041 struct glx_screen *psc = NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002042
Stéphane Marchesinfc48de42011-05-26 17:19:03 -07002043 if ((GetGLXPrivScreenConfig(dpy, vis->screen, &priv, &psc) == Success)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002044 && __glXExtensionBitIsEnabled(psc, SGIX_fbconfig_bit)
Ian Romanick71a6fb12010-02-04 15:59:51 -08002045 && (psc->configs->fbconfigID != (int) GLX_DONT_CARE)) {
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -04002046 return (GLXFBConfigSGIX) glx_config_find_visual(psc->configs,
2047 vis->visualid);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002048 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002049
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002050 return NULL;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002051}
2052
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002053#ifndef GLX_USE_APPLEGL
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002054/*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002055** GLX_SGIX_swap_group
2056*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002057static void
2058__glXJoinSwapGroupSGIX(Display * dpy, GLXDrawable drawable,
2059 GLXDrawable member)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002060{
2061 (void) dpy;
2062 (void) drawable;
2063 (void) member;
2064}
2065
2066
2067/*
2068** GLX_SGIX_swap_barrier
2069*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002070static void
2071__glXBindSwapBarrierSGIX(Display * dpy, GLXDrawable drawable, int barrier)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002072{
2073 (void) dpy;
2074 (void) drawable;
2075 (void) barrier;
2076}
2077
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002078static Bool
2079__glXQueryMaxSwapBarriersSGIX(Display * dpy, int screen, int *max)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002080{
2081 (void) dpy;
2082 (void) screen;
2083 (void) max;
2084 return False;
2085}
2086
2087
2088/*
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002089** GLX_OML_sync_control
2090*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002091static Bool
2092__glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable,
2093 int64_t * ust, int64_t * msc, int64_t * sbc)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002094{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04002095 struct glx_display * const priv = __glXInitialize(dpy);
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002096 int ret;
Vinson Lee67776f62010-04-02 00:12:59 -07002097#ifdef GLX_DIRECT_RENDERING
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002098 __GLXDRIdrawable *pdraw;
Vinson Lee67776f62010-04-02 00:12:59 -07002099#endif
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002100 struct glx_screen *psc;
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002101
2102 if (!priv)
2103 return False;
2104
Vinson Lee67776f62010-04-02 00:12:59 -07002105#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002106 pdraw = GetGLXDRIDrawable(dpy, drawable);
2107 psc = pdraw ? pdraw->psc : NULL;
2108 if (pdraw && psc->driScreen->getDrawableMSC) {
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002109 ret = psc->driScreen->getDrawableMSC(psc, pdraw, ust, msc, sbc);
2110 return ret;
2111 }
Vinson Lee67776f62010-04-02 00:12:59 -07002112#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002113
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002114 return False;
2115}
2116
Jeremy Huddleston80b280d2010-04-02 01:35:19 -07002117#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberg3d28a262008-03-08 22:28:01 -05002118_X_HIDDEN GLboolean
Lauri Kasanenfe2079c2013-12-15 12:37:55 +02002119__glxGetMscRate(struct glx_screen *psc,
Kristian Høgsberg7a66e542010-07-21 14:09:49 -04002120 int32_t * numerator, int32_t * denominator)
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002121{
2122#ifdef XF86VIDMODE
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002123 XF86VidModeModeLine mode_line;
2124 int dot_clock;
2125 int i;
Ian Romanick26b2bee2010-02-04 15:47:54 -08002126
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002127 if (XF86VidModeQueryVersion(psc->dpy, &i, &i) &&
2128 XF86VidModeGetModeLine(psc->dpy, psc->scr, &dot_clock, &mode_line)) {
2129 unsigned n = dot_clock * 1000;
2130 unsigned d = mode_line.vtotal * mode_line.htotal;
2131
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002132# define V_INTERLACE 0x010
2133# define V_DBLSCAN 0x020
2134
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002135 if (mode_line.flags & V_INTERLACE)
2136 n *= 2;
2137 else if (mode_line.flags & V_DBLSCAN)
2138 d *= 2;
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002139
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002140 /* The OML_sync_control spec requires that if the refresh rate is a
2141 * whole number, that the returned numerator be equal to the refresh
2142 * rate and the denominator be 1.
2143 */
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002144
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002145 if (n % d == 0) {
2146 n /= d;
2147 d = 1;
2148 }
2149 else {
2150 static const unsigned f[] = { 13, 11, 7, 5, 3, 2, 0 };
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002151
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002152 /* This is a poor man's way to reduce a fraction. It's far from
2153 * perfect, but it will work well enough for this situation.
2154 */
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002155
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002156 for (i = 0; f[i] != 0; i++) {
2157 while (n % f[i] == 0 && d % f[i] == 0) {
2158 d /= f[i];
2159 n /= f[i];
2160 }
2161 }
2162 }
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002163
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002164 *numerator = n;
2165 *denominator = d;
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002166
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002167 return True;
2168 }
2169 else
Kristian Høgsberg57d3f712010-09-07 14:23:00 -04002170#endif
Ian Romanick26b2bee2010-02-04 15:47:54 -08002171
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002172 return False;
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002173}
2174#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002175
2176/**
2177 * Determine the refresh rate of the specified drawable and display.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002178 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002179 * \param dpy Display whose refresh rate is to be determined.
2180 * \param drawable Drawable whose refresh rate is to be determined.
2181 * \param numerator Numerator of the refresh rate.
2182 * \param demoninator Denominator of the refresh rate.
2183 * \return If the refresh rate for the specified display and drawable could
2184 * be calculated, True is returned. Otherwise False is returned.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002185 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002186 * \note This function is implemented entirely client-side. A lot of other
2187 * functionality is required to export GLX_OML_sync_control, so on
2188 * XFree86 this function can be called for direct-rendering contexts
2189 * when GLX_OML_sync_control appears in the client extension string.
2190 */
2191
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002192_X_HIDDEN GLboolean
2193__glXGetMscRateOML(Display * dpy, GLXDrawable drawable,
2194 int32_t * numerator, int32_t * denominator)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002195{
2196#if defined( GLX_DIRECT_RENDERING ) && defined( XF86VIDMODE )
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002197 __GLXDRIdrawable *draw = GetGLXDRIDrawable(dpy, drawable);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002198
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002199 if (draw == NULL)
2200 return False;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002201
Lauri Kasanenfe2079c2013-12-15 12:37:55 +02002202 return __glxGetMscRate(draw->psc, numerator, denominator);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002203#else
Kristian Høgsberg286ce272007-11-06 14:34:15 -05002204 (void) dpy;
2205 (void) drawable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002206 (void) numerator;
2207 (void) denominator;
2208#endif
2209 return False;
2210}
2211
2212
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002213static int64_t
2214__glXSwapBuffersMscOML(Display * dpy, GLXDrawable drawable,
2215 int64_t target_msc, int64_t divisor, int64_t remainder)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002216{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04002217 struct glx_context *gc = __glXGetCurrentContext();
Vinson Lee67776f62010-04-02 00:12:59 -07002218#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002219 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002220 struct glx_screen *psc = pdraw ? pdraw->psc : NULL;
Vinson Lee67776f62010-04-02 00:12:59 -07002221#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002222
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03002223 if (gc == &dummyContext) /* no GLX for this */
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002224 return -1;
2225
Vinson Lee16f568a2010-04-01 00:10:28 -07002226#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergc491e582010-07-28 15:33:09 -04002227 if (!pdraw || !gc->isDirect)
Vinson Lee16f568a2010-04-01 00:10:28 -07002228 return -1;
2229#endif
2230
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002231 /* The OML_sync_control spec says these should "generate a GLX_BAD_VALUE
2232 * error", but it also says "It [glXSwapBuffersMscOML] will return a value
2233 * of -1 if the function failed because of errors detected in the input
2234 * parameters"
2235 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002236 if (divisor < 0 || remainder < 0 || target_msc < 0)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002237 return -1;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002238 if (divisor > 0 && remainder >= divisor)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002239 return -1;
2240
Jesse Barnes8f4f2a02010-03-22 16:39:11 -07002241 if (target_msc == 0 && divisor == 0 && remainder == 0)
2242 remainder = 1;
2243
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002244#ifdef GLX_DIRECT_RENDERING
2245 if (psc->driScreen && psc->driScreen->swapBuffers)
2246 return (*psc->driScreen->swapBuffers)(pdraw, target_msc, divisor,
Marek Olšák5b7e9b72012-11-13 17:06:37 +01002247 remainder, False);
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002248#endif
2249
2250 return -1;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002251}
2252
2253
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002254static Bool
2255__glXWaitForMscOML(Display * dpy, GLXDrawable drawable,
2256 int64_t target_msc, int64_t divisor,
2257 int64_t remainder, int64_t * ust,
2258 int64_t * msc, int64_t * sbc)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002259{
Vinson Lee67776f62010-04-02 00:12:59 -07002260#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002261 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002262 struct glx_screen *psc = pdraw ? pdraw->psc : NULL;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002263 int ret;
Jon TURNEYae9487c2010-08-09 14:47:26 +01002264#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002265
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002266
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002267 /* The OML_sync_control spec says these should "generate a GLX_BAD_VALUE
2268 * error", but the return type in the spec is Bool.
2269 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002270 if (divisor < 0 || remainder < 0 || target_msc < 0)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002271 return False;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002272 if (divisor > 0 && remainder >= divisor)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002273 return False;
2274
Vinson Lee67776f62010-04-02 00:12:59 -07002275#ifdef GLX_DIRECT_RENDERING
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002276 if (pdraw && psc->driScreen && psc->driScreen->waitForMSC) {
2277 ret = psc->driScreen->waitForMSC(pdraw, target_msc, divisor, remainder,
2278 ust, msc, sbc);
2279 return ret;
2280 }
Vinson Lee67776f62010-04-02 00:12:59 -07002281#endif
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002282
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002283 return False;
2284}
2285
2286
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002287static Bool
2288__glXWaitForSbcOML(Display * dpy, GLXDrawable drawable,
2289 int64_t target_sbc, int64_t * ust,
2290 int64_t * msc, int64_t * sbc)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002291{
Vinson Lee67776f62010-04-02 00:12:59 -07002292#ifdef GLX_DIRECT_RENDERING
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002293 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002294 struct glx_screen *psc = pdraw ? pdraw->psc : NULL;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002295 int ret;
Jon TURNEYae9487c2010-08-09 14:47:26 +01002296#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002297
2298 /* The OML_sync_control spec says this should "generate a GLX_BAD_VALUE
2299 * error", but the return type in the spec is Bool.
2300 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002301 if (target_sbc < 0)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002302 return False;
Vinson Lee67776f62010-04-02 00:12:59 -07002303
2304#ifdef GLX_DIRECT_RENDERING
kleinerm251bf292010-02-19 12:28:26 -08002305 if (pdraw && psc->driScreen && psc->driScreen->waitForSBC) {
Jesse Barnesdaf7fe62009-09-15 23:23:09 -07002306 ret = psc->driScreen->waitForSBC(pdraw, target_sbc, ust, msc, sbc);
2307 return ret;
2308 }
Vinson Lee67776f62010-04-02 00:12:59 -07002309#endif
2310
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002311 return False;
2312}
2313
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002314/*@}*/
2315
2316
2317/**
2318 * Mesa extension stubs. These will help reduce portability problems.
2319 */
2320/*@{*/
2321
2322/**
2323 * Release all buffers associated with the specified GLX drawable.
2324 *
2325 * \todo
2326 * This function was intended for stand-alone Mesa. The issue there is that
2327 * the library doesn't get any notification when a window is closed. In
2328 * DRI there is a similar but slightly different issue. When GLX 1.3 is
2329 * supported, there are 3 different functions to destroy a drawable. It
2330 * should be possible to create GLX protocol (or have it determine which
2331 * protocol to use based on the type of the drawable) to have one function
2332 * do the work of 3. For the direct-rendering case, this function could
2333 * just call the driver's \c __DRIdrawableRec::destroyDrawable function.
2334 * This would reduce the frequency with which \c __driGarbageCollectDrawables
2335 * would need to be used. This really should be done as part of the new DRI
2336 * interface work.
2337 *
2338 * \sa http://oss.sgi.com/projects/ogl-sample/registry/MESA/release_buffers.txt
2339 * __driGarbageCollectDrawables
2340 * glXDestroyGLXPixmap
2341 * glXDestroyPbuffer glXDestroyPixmap glXDestroyWindow
2342 * glXDestroyGLXPbufferSGIX glXDestroyGLXVideoSourceSGIX
2343 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002344static Bool
2345__glXReleaseBuffersMESA(Display * dpy, GLXDrawable d)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002346{
2347 (void) dpy;
2348 (void) d;
2349 return False;
2350}
2351
2352
Kyle Brenneman22a9e002016-05-11 14:01:53 -04002353_GLX_PUBLIC GLXPixmap
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002354glXCreateGLXPixmapMESA(Display * dpy, XVisualInfo * visual,
2355 Pixmap pixmap, Colormap cmap)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002356{
2357 (void) dpy;
2358 (void) visual;
2359 (void) pixmap;
2360 (void) cmap;
2361 return 0;
2362}
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002363
Ian Romanickfc5b57b2006-08-29 15:38:19 +00002364/*@}*/
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002365
Ian Romanickfc5b57b2006-08-29 15:38:19 +00002366
2367/**
2368 * GLX_MESA_copy_sub_buffer
2369 */
Brian Paulf2ad1b62006-03-31 15:48:04 +00002370#define X_GLXvop_CopySubBufferMESA 5154 /* temporary */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002371static void
2372__glXCopySubBufferMESA(Display * dpy, GLXDrawable drawable,
2373 int x, int y, int width, int height)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002374{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002375 xGLXVendorPrivateReq *req;
Kristian Høgsbergc356f582010-07-28 11:16:00 -04002376 struct glx_context *gc;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002377 GLXContextTag tag;
2378 CARD32 *drawable_ptr;
2379 INT32 *x_ptr, *y_ptr, *w_ptr, *h_ptr;
2380 CARD8 opcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002381
Kristian Høgsberg2235b1c2010-07-26 15:50:02 -04002382#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsbergeeaab202010-07-22 22:36:37 -04002383 __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002384 if (pdraw != NULL) {
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -04002385 struct glx_screen *psc = pdraw->psc;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002386 if (psc->driScreen->copySubBuffer != NULL) {
Marek Olšák5b7e9b72012-11-13 17:06:37 +01002387 (*psc->driScreen->copySubBuffer) (pdraw, x, y, width, height, True);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002388 }
Brian Paulf2ad1b62006-03-31 15:48:04 +00002389
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002390 return;
2391 }
Brian Paulf2ad1b62006-03-31 15:48:04 +00002392#endif
2393
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002394 opcode = __glXSetupForCommand(dpy);
2395 if (!opcode)
2396 return;
Brian Paulf2ad1b62006-03-31 15:48:04 +00002397
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002398 /*
Brian Paulf2ad1b62006-03-31 15:48:04 +00002399 ** The calling thread may or may not have a current context. If it
2400 ** does, send the context tag so the server can do a flush.
2401 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002402 gc = __glXGetCurrentContext();
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03002403 if ((gc != &dummyContext) && (dpy == gc->currentDpy) &&
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002404 ((drawable == gc->currentDrawable) ||
2405 (drawable == gc->currentReadable))) {
2406 tag = gc->currentContextTag;
2407 }
2408 else {
2409 tag = 0;
2410 }
Brian Paulf2ad1b62006-03-31 15:48:04 +00002411
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002412 LockDisplay(dpy);
2413 GetReqExtra(GLXVendorPrivate, sizeof(CARD32) + sizeof(INT32) * 4, req);
2414 req->reqType = opcode;
2415 req->glxCode = X_GLXVendorPrivate;
2416 req->vendorCode = X_GLXvop_CopySubBufferMESA;
2417 req->contextTag = tag;
Brian Paulf2ad1b62006-03-31 15:48:04 +00002418
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002419 drawable_ptr = (CARD32 *) (req + 1);
2420 x_ptr = (INT32 *) (drawable_ptr + 1);
2421 y_ptr = (INT32 *) (drawable_ptr + 2);
2422 w_ptr = (INT32 *) (drawable_ptr + 3);
2423 h_ptr = (INT32 *) (drawable_ptr + 4);
Brian Paulf2ad1b62006-03-31 15:48:04 +00002424
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002425 *drawable_ptr = drawable;
2426 *x_ptr = x;
2427 *y_ptr = y;
2428 *w_ptr = width;
2429 *h_ptr = height;
Brian Paulf2ad1b62006-03-31 15:48:04 +00002430
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002431 UnlockDisplay(dpy);
2432 SyncHandle();
Brian Paulf2ad1b62006-03-31 15:48:04 +00002433}
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002434
Kristian Høgsberg643b2af2010-05-21 10:36:56 -04002435/*@{*/
2436static void
2437__glXBindTexImageEXT(Display * dpy,
2438 GLXDrawable drawable, int buffer, const int *attrib_list)
2439{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04002440 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg643b2af2010-05-21 10:36:56 -04002441
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03002442 if (gc == &dummyContext || gc->vtable->bind_tex_image == NULL)
Kristian Høgsberg643b2af2010-05-21 10:36:56 -04002443 return;
2444
2445 gc->vtable->bind_tex_image(dpy, drawable, buffer, attrib_list);
2446}
2447
2448static void
2449__glXReleaseTexImageEXT(Display * dpy, GLXDrawable drawable, int buffer)
2450{
Kristian Høgsbergc356f582010-07-28 11:16:00 -04002451 struct glx_context *gc = __glXGetCurrentContext();
Kristian Høgsberg643b2af2010-05-21 10:36:56 -04002452
Bernard Kilarski2e3f0672016-06-07 13:33:33 +03002453 if (gc == &dummyContext || gc->vtable->release_tex_image == NULL)
Kristian Høgsberg643b2af2010-05-21 10:36:56 -04002454 return;
2455
2456 gc->vtable->release_tex_image(dpy, drawable, buffer);
2457}
2458
Ian Romanickfc5b57b2006-08-29 15:38:19 +00002459/*@}*/
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002460
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002461#endif /* GLX_USE_APPLEGL */
2462
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002463/*
2464** glXGetProcAddress support
2465*/
2466
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002467struct name_address_pair
2468{
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002469 const char *Name;
2470 GLvoid *Address;
2471};
2472
2473#define GLX_FUNCTION(f) { # f, (GLvoid *) f }
2474#define GLX_FUNCTION2(n,f) { # n, (GLvoid *) f }
2475
2476static const struct name_address_pair GLX_functions[] = {
2477 /*** GLX_VERSION_1_0 ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002478 GLX_FUNCTION(glXChooseVisual),
2479 GLX_FUNCTION(glXCopyContext),
2480 GLX_FUNCTION(glXCreateContext),
2481 GLX_FUNCTION(glXCreateGLXPixmap),
2482 GLX_FUNCTION(glXDestroyContext),
2483 GLX_FUNCTION(glXDestroyGLXPixmap),
2484 GLX_FUNCTION(glXGetConfig),
2485 GLX_FUNCTION(glXGetCurrentContext),
2486 GLX_FUNCTION(glXGetCurrentDrawable),
2487 GLX_FUNCTION(glXIsDirect),
2488 GLX_FUNCTION(glXMakeCurrent),
2489 GLX_FUNCTION(glXQueryExtension),
2490 GLX_FUNCTION(glXQueryVersion),
2491 GLX_FUNCTION(glXSwapBuffers),
2492 GLX_FUNCTION(glXUseXFont),
2493 GLX_FUNCTION(glXWaitGL),
2494 GLX_FUNCTION(glXWaitX),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002495
2496 /*** GLX_VERSION_1_1 ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002497 GLX_FUNCTION(glXGetClientString),
2498 GLX_FUNCTION(glXQueryExtensionsString),
2499 GLX_FUNCTION(glXQueryServerString),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002500
2501 /*** GLX_VERSION_1_2 ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002502 GLX_FUNCTION(glXGetCurrentDisplay),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002503
2504 /*** GLX_VERSION_1_3 ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002505 GLX_FUNCTION(glXChooseFBConfig),
2506 GLX_FUNCTION(glXCreateNewContext),
2507 GLX_FUNCTION(glXCreatePbuffer),
2508 GLX_FUNCTION(glXCreatePixmap),
2509 GLX_FUNCTION(glXCreateWindow),
2510 GLX_FUNCTION(glXDestroyPbuffer),
2511 GLX_FUNCTION(glXDestroyPixmap),
2512 GLX_FUNCTION(glXDestroyWindow),
2513 GLX_FUNCTION(glXGetCurrentReadDrawable),
2514 GLX_FUNCTION(glXGetFBConfigAttrib),
2515 GLX_FUNCTION(glXGetFBConfigs),
2516 GLX_FUNCTION(glXGetSelectedEvent),
2517 GLX_FUNCTION(glXGetVisualFromFBConfig),
2518 GLX_FUNCTION(glXMakeContextCurrent),
2519 GLX_FUNCTION(glXQueryContext),
2520 GLX_FUNCTION(glXQueryDrawable),
2521 GLX_FUNCTION(glXSelectEvent),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002522
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002523#ifndef GLX_USE_APPLEGL
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002524 /*** GLX_SGI_swap_control ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002525 GLX_FUNCTION2(glXSwapIntervalSGI, __glXSwapIntervalSGI),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002526
2527 /*** GLX_SGI_video_sync ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002528 GLX_FUNCTION2(glXGetVideoSyncSGI, __glXGetVideoSyncSGI),
2529 GLX_FUNCTION2(glXWaitVideoSyncSGI, __glXWaitVideoSyncSGI),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002530
2531 /*** GLX_SGI_make_current_read ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002532 GLX_FUNCTION2(glXMakeCurrentReadSGI, glXMakeContextCurrent),
2533 GLX_FUNCTION2(glXGetCurrentReadDrawableSGI, glXGetCurrentReadDrawable),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002534
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002535 /*** GLX_EXT_import_context ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002536 GLX_FUNCTION(glXFreeContextEXT),
2537 GLX_FUNCTION(glXGetContextIDEXT),
2538 GLX_FUNCTION2(glXGetCurrentDisplayEXT, glXGetCurrentDisplay),
2539 GLX_FUNCTION(glXImportContextEXT),
2540 GLX_FUNCTION2(glXQueryContextInfoEXT, glXQueryContext),
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002541#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002542
2543 /*** GLX_SGIX_fbconfig ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002544 GLX_FUNCTION2(glXGetFBConfigAttribSGIX, glXGetFBConfigAttrib),
2545 GLX_FUNCTION2(glXChooseFBConfigSGIX, glXChooseFBConfig),
2546 GLX_FUNCTION(glXCreateGLXPixmapWithConfigSGIX),
2547 GLX_FUNCTION(glXCreateContextWithConfigSGIX),
2548 GLX_FUNCTION2(glXGetVisualFromFBConfigSGIX, glXGetVisualFromFBConfig),
2549 GLX_FUNCTION(glXGetFBConfigFromVisualSGIX),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002550
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002551#ifndef GLX_USE_APPLEGL
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002552 /*** GLX_SGIX_pbuffer ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002553 GLX_FUNCTION(glXCreateGLXPbufferSGIX),
2554 GLX_FUNCTION(glXDestroyGLXPbufferSGIX),
2555 GLX_FUNCTION(glXQueryGLXPbufferSGIX),
2556 GLX_FUNCTION(glXSelectEventSGIX),
2557 GLX_FUNCTION(glXGetSelectedEventSGIX),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002558
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002559 /*** GLX_SGIX_swap_group ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002560 GLX_FUNCTION2(glXJoinSwapGroupSGIX, __glXJoinSwapGroupSGIX),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002561
2562 /*** GLX_SGIX_swap_barrier ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002563 GLX_FUNCTION2(glXBindSwapBarrierSGIX, __glXBindSwapBarrierSGIX),
2564 GLX_FUNCTION2(glXQueryMaxSwapBarriersSGIX, __glXQueryMaxSwapBarriersSGIX),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002565
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002566 /*** GLX_MESA_copy_sub_buffer ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002567 GLX_FUNCTION2(glXCopySubBufferMESA, __glXCopySubBufferMESA),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002568
2569 /*** GLX_MESA_pixmap_colormap ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002570 GLX_FUNCTION(glXCreateGLXPixmapMESA),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002571
2572 /*** GLX_MESA_release_buffers ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002573 GLX_FUNCTION2(glXReleaseBuffersMESA, __glXReleaseBuffersMESA),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002574
2575 /*** GLX_MESA_swap_control ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002576 GLX_FUNCTION2(glXSwapIntervalMESA, __glXSwapIntervalMESA),
2577 GLX_FUNCTION2(glXGetSwapIntervalMESA, __glXGetSwapIntervalMESA),
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002578#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002579
2580 /*** GLX_ARB_get_proc_address ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002581 GLX_FUNCTION(glXGetProcAddressARB),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002582
2583 /*** GLX 1.4 ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002584 GLX_FUNCTION2(glXGetProcAddress, glXGetProcAddressARB),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002585
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002586#ifndef GLX_USE_APPLEGL
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002587 /*** GLX_OML_sync_control ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002588 GLX_FUNCTION2(glXWaitForSbcOML, __glXWaitForSbcOML),
2589 GLX_FUNCTION2(glXWaitForMscOML, __glXWaitForMscOML),
2590 GLX_FUNCTION2(glXSwapBuffersMscOML, __glXSwapBuffersMscOML),
2591 GLX_FUNCTION2(glXGetMscRateOML, __glXGetMscRateOML),
2592 GLX_FUNCTION2(glXGetSyncValuesOML, __glXGetSyncValuesOML),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002593
Brian Paul42725d62006-02-07 00:39:56 +00002594 /*** GLX_EXT_texture_from_pixmap ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002595 GLX_FUNCTION2(glXBindTexImageEXT, __glXBindTexImageEXT),
2596 GLX_FUNCTION2(glXReleaseTexImageEXT, __glXReleaseTexImageEXT),
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07002597#endif
Brian Paul42725d62006-02-07 00:39:56 +00002598
Jon TURNEYf647a722014-06-02 18:52:15 +01002599#if defined(GLX_DIRECT_RENDERING) && defined(GLX_USE_DRM)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002600 /*** DRI configuration ***/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002601 GLX_FUNCTION(glXGetScreenDriver),
2602 GLX_FUNCTION(glXGetDriverConfig),
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002603#endif
2604
Ian Romanick78aa71a2011-11-30 11:12:49 -08002605 /*** GLX_ARB_create_context and GLX_ARB_create_context_profile ***/
2606 GLX_FUNCTION(glXCreateContextAttribsARB),
2607
Ian Romanick6c28c032013-02-15 22:35:24 -08002608 /*** GLX_MESA_query_renderer ***/
2609 GLX_FUNCTION(glXQueryRendererIntegerMESA),
2610 GLX_FUNCTION(glXQueryRendererStringMESA),
2611 GLX_FUNCTION(glXQueryCurrentRendererIntegerMESA),
2612 GLX_FUNCTION(glXQueryCurrentRendererStringMESA),
2613
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002614 {NULL, NULL} /* end of list */
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002615};
2616
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002617static const GLvoid *
2618get_glx_proc_address(const char *funcName)
2619{
2620 GLuint i;
2621
2622 /* try static functions */
2623 for (i = 0; GLX_functions[i].Name; i++) {
2624 if (strcmp(GLX_functions[i].Name, funcName) == 0)
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002625 return GLX_functions[i].Address;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002626 }
2627
2628 return NULL;
2629}
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002630
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002631/**
2632 * Get the address of a named GL function. This is the pre-GLX 1.4 name for
2633 * \c glXGetProcAddress.
2634 *
2635 * \param procName Name of a GL or GLX function.
2636 * \returns A pointer to the named function
2637 *
2638 * \sa glXGetProcAddress
2639 */
Kyle Brenneman22a9e002016-05-11 14:01:53 -04002640_GLX_PUBLIC void (*glXGetProcAddressARB(const GLubyte * procName)) (void)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002641{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002642 typedef void (*gl_function) (void);
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002643 gl_function f;
2644
2645
2646 /* Search the table of GLX and internal functions first. If that
2647 * fails and the supplied name could be a valid core GL name, try
2648 * searching the core GL function table. This check is done to prevent
2649 * DRI based drivers from searching the core GL function table for
2650 * internal API functions.
2651 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002652 f = (gl_function) get_glx_proc_address((const char *) procName);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002653 if ((f == NULL) && (procName[0] == 'g') && (procName[1] == 'l')
2654 && (procName[2] != 'X')) {
Emil Velikov6177d602017-04-13 17:17:45 +01002655#ifdef GLX_INDIRECT_RENDERING
Chia-I Wue8c7d752010-12-26 18:24:13 +08002656 f = (gl_function) __indirect_get_proc_address((const char *) procName);
Matt Turner027ce0c2012-01-24 11:34:42 -05002657#endif
Chia-I Wue8c7d752010-12-26 18:24:13 +08002658 if (!f)
2659 f = (gl_function) _glapi_get_proc_address((const char *) procName);
Jeremy Huddleston559e4f82011-06-15 00:27:55 -07002660 if (!f) {
2661 struct glx_context *gc = __glXGetCurrentContext();
2662
2663 if (gc != NULL && gc->vtable->get_proc_address != NULL)
2664 f = gc->vtable->get_proc_address((const char *) procName);
2665 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002666 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002667 return f;
2668}
2669
2670/**
2671 * Get the address of a named GL function. This is the GLX 1.4 name for
2672 * \c glXGetProcAddressARB.
2673 *
2674 * \param procName Name of a GL or GLX function.
2675 * \returns A pointer to the named function
2676 *
2677 * \sa glXGetProcAddressARB
2678 */
Emil Velikov9898bcf2016-12-05 19:52:44 +00002679_GLX_PUBLIC
2680GLX_ALIAS(__GLXextFuncPtr, glXGetProcAddress,
2681 (const GLubyte * procName),
2682 (procName), glXGetProcAddressARB)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002683
Jeremy Huddleston80b280d2010-04-02 01:35:19 -07002684#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002685/**
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002686 * Get the unadjusted system time (UST). Currently, the UST is measured in
2687 * microseconds since Epoc. The actual resolution of the UST may vary from
2688 * system to system, and the units may vary from release to release.
2689 * Drivers should not call this function directly. They should instead use
2690 * \c glXGetProcAddress to obtain a pointer to the function.
2691 *
2692 * \param ust Location to store the 64-bit UST
2693 * \returns Zero on success or a negative errno value on failure.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002694 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002695 * \sa glXGetProcAddress, PFNGLXGETUSTPROC
2696 *
2697 * \since Internal API version 20030317.
2698 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002699_X_HIDDEN int
2700__glXGetUST(int64_t * ust)
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002701{
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002702 struct timeval tv;
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002703
RALOVICH, Kristóf08962682009-08-12 12:41:22 +02002704 if (ust == NULL) {
2705 return -EFAULT;
2706 }
2707
2708 if (gettimeofday(&tv, NULL) == 0) {
2709 ust[0] = (tv.tv_sec * 1000000) + tv.tv_usec;
2710 return 0;
2711 }
2712 else {
2713 return -errno;
2714 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +00002715}
2716#endif /* GLX_DIRECT_RENDERING */
Marek Olšák37d3a262016-03-03 18:43:53 +01002717
2718#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
2719
Marek Olšák64c25932016-11-02 18:59:22 +01002720PUBLIC int
Marek Olšák37d3a262016-03-03 18:43:53 +01002721MesaGLInteropGLXQueryDeviceInfo(Display *dpy, GLXContext context,
Emil Velikov13faddb2016-05-30 10:56:33 +01002722 struct mesa_glinterop_device_info *out)
Marek Olšák37d3a262016-03-03 18:43:53 +01002723{
2724 struct glx_context *gc = (struct glx_context*)context;
2725 int ret;
2726
2727 __glXLock();
2728
2729 if (!gc || gc->xid == None || !gc->isDirect) {
2730 __glXUnlock();
2731 return MESA_GLINTEROP_INVALID_CONTEXT;
2732 }
2733
2734 if (!gc->vtable->interop_query_device_info) {
2735 __glXUnlock();
2736 return MESA_GLINTEROP_UNSUPPORTED;
2737 }
2738
2739 ret = gc->vtable->interop_query_device_info(gc, out);
2740 __glXUnlock();
2741 return ret;
2742}
2743
Marek Olšák64c25932016-11-02 18:59:22 +01002744PUBLIC int
Marek Olšák37d3a262016-03-03 18:43:53 +01002745MesaGLInteropGLXExportObject(Display *dpy, GLXContext context,
Emil Velikov13faddb2016-05-30 10:56:33 +01002746 struct mesa_glinterop_export_in *in,
2747 struct mesa_glinterop_export_out *out)
Marek Olšák37d3a262016-03-03 18:43:53 +01002748{
2749 struct glx_context *gc = (struct glx_context*)context;
2750 int ret;
2751
2752 __glXLock();
2753
2754 if (!gc || gc->xid == None || !gc->isDirect) {
2755 __glXUnlock();
2756 return MESA_GLINTEROP_INVALID_CONTEXT;
2757 }
2758
2759 if (!gc->vtable->interop_export_object) {
2760 __glXUnlock();
2761 return MESA_GLINTEROP_UNSUPPORTED;
2762 }
2763
2764 ret = gc->vtable->interop_export_object(gc, in, out);
2765 __glXUnlock();
2766 return ret;
2767}
2768
2769#endif /* defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL) */