1999-11-11 01:22:25 +00:00
|
|
|
/*
|
|
|
|
|
* Mesa 3-D graphics library
|
2008-06-17 13:23:32 -06:00
|
|
|
* Version: 7.1
|
1999-11-11 01:22:25 +00:00
|
|
|
*
|
2008-06-17 13:23:32 -06:00
|
|
|
* Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
|
1999-11-11 01:22:25 +00:00
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
1999-11-25 18:17:04 +00:00
|
|
|
/*
|
|
|
|
|
* This file manages the OpenGL API dispatch layer.
|
|
|
|
|
* The dispatch table (struct _glapi_table) is basically just a list
|
|
|
|
|
* of function pointers.
|
|
|
|
|
* There are functions to set/get the current dispatch table for the
|
|
|
|
|
* current thread and to manage registration/dispatch of dynamically
|
|
|
|
|
* added extension functions.
|
2000-01-28 19:03:33 +00:00
|
|
|
*
|
|
|
|
|
* It's intended that this file and the other glapi*.[ch] files are
|
|
|
|
|
* flexible enough to be reused in several places: XFree86, DRI-
|
|
|
|
|
* based libGL.so, and perhaps the SGI SI.
|
|
|
|
|
*
|
2002-06-29 19:48:15 +00:00
|
|
|
* NOTE: There are no dependencies on Mesa in this code.
|
2001-01-23 23:35:47 +00:00
|
|
|
*
|
|
|
|
|
* Versions (API changes):
|
|
|
|
|
* 2000/02/23 - original version for Mesa 3.3 and XFree86 4.0
|
|
|
|
|
* 2001/01/16 - added dispatch override feature for Mesa 3.5
|
2002-06-29 19:48:15 +00:00
|
|
|
* 2002/06/28 - added _glapi_set_warning_func(), Mesa 4.1.
|
2002-10-02 01:51:44 +00:00
|
|
|
* 2002/10/01 - _glapi_get_proc_address() will now generate new entrypoints
|
|
|
|
|
* itself (using offset ~0). _glapi_add_entrypoint() can be
|
|
|
|
|
* called afterward and it'll fill in the correct dispatch
|
|
|
|
|
* offset. This allows DRI libGL to avoid probing for DRI
|
|
|
|
|
* drivers! No changes to the public glapi interface.
|
1999-11-25 18:17:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-04-18 17:34:24 +03:00
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
|
#include <dix-config.h>
|
2010-02-25 17:52:04 +02:00
|
|
|
#include "glapi/mesa.h"
|
2008-05-21 11:59:23 -04:00
|
|
|
#else
|
2008-07-23 21:06:01 +09:00
|
|
|
#include "main/glheader.h"
|
2009-02-22 15:43:29 -07:00
|
|
|
#include "main/compiler.h"
|
2008-07-02 06:22:47 -07:00
|
|
|
#endif
|
2008-05-21 11:59:23 -04:00
|
|
|
|
2009-09-03 11:03:20 +08:00
|
|
|
#include "glapi/glapi.h"
|
2010-03-09 22:03:24 +02:00
|
|
|
#include "glapi/glapi_priv.h"
|
1999-12-16 17:31:59 +00:00
|
|
|
|
2010-01-22 09:32:12 -07:00
|
|
|
extern _glapi_proc __glapi_noop_table[];
|
2001-03-28 17:19:58 +00:00
|
|
|
|
|
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
/**
|
|
|
|
|
* \name Current dispatch and current context control variables
|
|
|
|
|
*
|
|
|
|
|
* Depending on whether or not multithreading is support, and the type of
|
|
|
|
|
* support available, several variables are used to store the current context
|
|
|
|
|
* pointer and the current dispatch table pointer. In the non-threaded case,
|
|
|
|
|
* the variables \c _glapi_Dispatch and \c _glapi_Context are used for this
|
|
|
|
|
* purpose.
|
|
|
|
|
*
|
2009-08-25 09:37:43 -06:00
|
|
|
* In the "normal" threaded case, the variables \c _glapi_Dispatch and
|
|
|
|
|
* \c _glapi_Context will be \c NULL if an application is detected as being
|
|
|
|
|
* multithreaded. Single-threaded applications will use \c _glapi_Dispatch
|
|
|
|
|
* and \c _glapi_Context just like the case without any threading support.
|
|
|
|
|
* When \c _glapi_Dispatch and \c _glapi_Context are \c NULL, the thread state
|
|
|
|
|
* data \c _gl_DispatchTSD and \c ContextTSD are used. Drivers and the
|
|
|
|
|
* static dispatch functions access these variables via \c _glapi_get_dispatch
|
|
|
|
|
* and \c _glapi_get_context.
|
2005-08-10 23:54:15 +00:00
|
|
|
*
|
2009-08-25 09:37:43 -06:00
|
|
|
* There is a race condition in setting \c _glapi_Dispatch to \c NULL. It is
|
|
|
|
|
* possible for the original thread to be setting it at the same instant a new
|
|
|
|
|
* thread, perhaps running on a different processor, is clearing it. Because
|
|
|
|
|
* of that, \c ThreadSafe, which can only ever be changed to \c GL_TRUE, is
|
|
|
|
|
* used to determine whether or not the application is multithreaded.
|
|
|
|
|
*
|
2005-08-10 23:54:15 +00:00
|
|
|
* In the TLS case, the variables \c _glapi_Dispatch and \c _glapi_Context are
|
|
|
|
|
* hardcoded to \c NULL. Instead the TLS variables \c _glapi_tls_Dispatch and
|
2009-08-25 09:37:43 -06:00
|
|
|
* \c _glapi_tls_Context are used. Having \c _glapi_Dispatch and
|
|
|
|
|
* \c _glapi_Context be hardcoded to \c NULL maintains binary compatability
|
|
|
|
|
* between TLS enabled loaders and non-TLS DRI drivers.
|
2005-08-10 23:54:15 +00:00
|
|
|
*/
|
|
|
|
|
/*@{*/
|
2005-04-13 20:59:15 +00:00
|
|
|
#if defined(GLX_USE_TLS)
|
|
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
PUBLIC __thread struct _glapi_table * _glapi_tls_Dispatch
|
2005-04-13 20:59:15 +00:00
|
|
|
__attribute__((tls_model("initial-exec")))
|
|
|
|
|
= (struct _glapi_table *) __glapi_noop_table;
|
|
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
PUBLIC __thread void * _glapi_tls_Context
|
2005-04-13 20:59:15 +00:00
|
|
|
__attribute__((tls_model("initial-exec")));
|
|
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
PUBLIC const struct _glapi_table *_glapi_Dispatch = NULL;
|
2010-02-27 15:19:44 +02:00
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
PUBLIC const void *_glapi_Context = NULL;
|
2005-04-13 20:59:15 +00:00
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
#if defined(THREADS)
|
|
|
|
|
|
2009-08-25 09:37:43 -06:00
|
|
|
static GLboolean ThreadSafe = GL_FALSE; /**< In thread-safe mode? */
|
2010-02-27 15:19:44 +02:00
|
|
|
|
2009-08-25 09:37:43 -06:00
|
|
|
_glthread_TSD _gl_DispatchTSD; /**< Per-thread dispatch pointer */
|
2010-02-27 15:19:44 +02:00
|
|
|
|
2009-08-25 09:37:43 -06:00
|
|
|
static _glthread_TSD ContextTSD; /**< Per-thread context pointer */
|
1999-12-16 17:31:59 +00:00
|
|
|
|
2005-08-10 23:54:15 +00:00
|
|
|
#endif /* defined(THREADS) */
|
2005-04-13 20:59:15 +00:00
|
|
|
|
2010-02-27 15:19:44 +02:00
|
|
|
PUBLIC struct _glapi_table *_glapi_Dispatch = (struct _glapi_table *) __glapi_noop_table;
|
|
|
|
|
|
2004-12-15 23:14:29 +00:00
|
|
|
PUBLIC void *_glapi_Context = NULL;
|
1999-11-11 01:22:25 +00:00
|
|
|
|
2005-04-13 20:59:15 +00:00
|
|
|
#endif /* defined(GLX_USE_TLS) */
|
2005-08-10 23:54:15 +00:00
|
|
|
/*@}*/
|
2001-01-23 23:35:47 +00:00
|
|
|
|
2002-10-02 01:51:44 +00:00
|
|
|
|
1999-12-16 17:31:59 +00:00
|
|
|
|
2010-02-27 15:19:44 +02:00
|
|
|
#if defined(THREADS) && !defined(GLX_USE_TLS)
|
|
|
|
|
|
2010-03-01 04:44:02 +02:00
|
|
|
void
|
|
|
|
|
_glapi_init_multithread(void)
|
|
|
|
|
{
|
|
|
|
|
_glthread_InitTSD(&_gl_DispatchTSD);
|
|
|
|
|
_glthread_InitTSD(&ContextTSD);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_glapi_destroy_multithread(void)
|
|
|
|
|
{
|
|
|
|
|
#ifdef WIN32_THREADS
|
|
|
|
|
_glthread_DestroyTSD(&_gl_DispatchTSD);
|
|
|
|
|
_glthread_DestroyTSD(&ContextTSD);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-27 15:19:44 +02:00
|
|
|
/**
|
|
|
|
|
* Mutex for multithread check.
|
|
|
|
|
*/
|
|
|
|
|
#ifdef WIN32_THREADS
|
|
|
|
|
/* _glthread_DECLARE_STATIC_MUTEX is broken on windows. There will be race! */
|
|
|
|
|
#define CHECK_MULTITHREAD_LOCK()
|
|
|
|
|
#define CHECK_MULTITHREAD_UNLOCK()
|
|
|
|
|
#else
|
|
|
|
|
_glthread_DECLARE_STATIC_MUTEX(ThreadCheckMutex);
|
|
|
|
|
#define CHECK_MULTITHREAD_LOCK() _glthread_LOCK_MUTEX(ThreadCheckMutex)
|
|
|
|
|
#define CHECK_MULTITHREAD_UNLOCK() _glthread_UNLOCK_MUTEX(ThreadCheckMutex)
|
|
|
|
|
#endif
|
1999-12-16 17:31:59 +00:00
|
|
|
|
2004-11-27 03:51:11 +00:00
|
|
|
/**
|
1999-12-16 17:31:59 +00:00
|
|
|
* We should call this periodically from a function such as glXMakeCurrent
|
2002-03-07 21:50:41 +00:00
|
|
|
* in order to test if multiple threads are being used.
|
1999-12-16 17:31:59 +00:00
|
|
|
*/
|
2010-01-03 19:53:01 -05:00
|
|
|
PUBLIC void
|
1999-12-16 17:31:59 +00:00
|
|
|
_glapi_check_multithread(void)
|
|
|
|
|
{
|
2009-07-10 15:21:42 +08:00
|
|
|
static unsigned long knownID;
|
|
|
|
|
static GLboolean firstCall = GL_TRUE;
|
|
|
|
|
|
2009-08-25 09:37:43 -06:00
|
|
|
if (ThreadSafe)
|
2009-07-10 15:21:42 +08:00
|
|
|
return;
|
|
|
|
|
|
2009-07-14 13:17:25 +08:00
|
|
|
CHECK_MULTITHREAD_LOCK();
|
2009-07-10 15:21:42 +08:00
|
|
|
if (firstCall) {
|
2010-03-01 23:18:29 +00:00
|
|
|
_glapi_init_multithread();
|
2009-07-10 17:35:11 +08:00
|
|
|
|
2009-07-10 15:21:42 +08:00
|
|
|
knownID = _glthread_GetID();
|
|
|
|
|
firstCall = GL_FALSE;
|
1999-12-16 17:31:59 +00:00
|
|
|
}
|
2009-07-10 15:21:42 +08:00
|
|
|
else if (knownID != _glthread_GetID()) {
|
2009-08-25 09:37:43 -06:00
|
|
|
ThreadSafe = GL_TRUE;
|
|
|
|
|
_glapi_set_dispatch(NULL);
|
|
|
|
|
_glapi_set_context(NULL);
|
1999-12-15 15:02:30 +00:00
|
|
|
}
|
2009-07-14 13:17:25 +08:00
|
|
|
CHECK_MULTITHREAD_UNLOCK();
|
1999-12-16 17:31:59 +00:00
|
|
|
}
|
1999-12-15 15:02:30 +00:00
|
|
|
|
2010-02-27 15:19:44 +02:00
|
|
|
#else
|
|
|
|
|
|
2010-03-01 04:44:02 +02:00
|
|
|
void
|
|
|
|
|
_glapi_init_multithread(void) { }
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_glapi_destroy_multithread(void) { }
|
|
|
|
|
|
2010-02-27 15:19:44 +02:00
|
|
|
PUBLIC void
|
|
|
|
|
_glapi_check_multithread(void) { }
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-11-11 01:22:25 +00:00
|
|
|
|
|
|
|
|
|
2004-11-27 03:51:11 +00:00
|
|
|
/**
|
1999-12-17 14:51:28 +00:00
|
|
|
* Set the current context pointer for this thread.
|
|
|
|
|
* The context pointer is an opaque type which should be cast to
|
|
|
|
|
* void from the real context pointer type.
|
|
|
|
|
*/
|
2004-12-15 23:14:29 +00:00
|
|
|
PUBLIC void
|
2000-01-28 20:17:42 +00:00
|
|
|
_glapi_set_context(void *context)
|
1999-12-17 14:51:28 +00:00
|
|
|
{
|
2005-04-13 20:59:15 +00:00
|
|
|
#if defined(GLX_USE_TLS)
|
|
|
|
|
_glapi_tls_Context = context;
|
|
|
|
|
#elif defined(THREADS)
|
2000-02-10 21:27:48 +00:00
|
|
|
_glthread_SetTSD(&ContextTSD, context);
|
2009-08-25 09:37:43 -06:00
|
|
|
_glapi_Context = (ThreadSafe) ? NULL : context;
|
1999-12-17 14:51:28 +00:00
|
|
|
#else
|
2000-01-28 20:17:42 +00:00
|
|
|
_glapi_Context = context;
|
1999-12-17 14:51:28 +00:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-11-27 03:51:11 +00:00
|
|
|
/**
|
1999-12-17 14:51:28 +00:00
|
|
|
* Get the current context pointer for this thread.
|
|
|
|
|
* The context pointer is an opaque type which should be cast from
|
|
|
|
|
* void to the real context pointer type.
|
|
|
|
|
*/
|
2004-12-15 23:14:29 +00:00
|
|
|
PUBLIC void *
|
2000-01-28 20:17:42 +00:00
|
|
|
_glapi_get_context(void)
|
1999-12-17 14:51:28 +00:00
|
|
|
{
|
2005-04-13 20:59:15 +00:00
|
|
|
#if defined(GLX_USE_TLS)
|
|
|
|
|
return _glapi_tls_Context;
|
|
|
|
|
#elif defined(THREADS)
|
2010-02-27 15:19:44 +02:00
|
|
|
return (ThreadSafe) ? _glthread_GetTSD(&ContextTSD) : _glapi_Context;
|
1999-12-17 14:51:28 +00:00
|
|
|
#else
|
2000-01-28 20:17:42 +00:00
|
|
|
return _glapi_Context;
|
1999-12-17 14:51:28 +00:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-17 13:23:32 -06:00
|
|
|
|
|
|
|
|
|
2004-11-27 03:51:11 +00:00
|
|
|
/**
|
1999-11-19 22:33:50 +00:00
|
|
|
* Set the global or per-thread dispatch table pointer.
|
2006-03-15 20:56:22 +00:00
|
|
|
* If the dispatch parameter is NULL we'll plug in the no-op dispatch
|
|
|
|
|
* table (__glapi_noop_table).
|
1999-11-19 22:33:50 +00:00
|
|
|
*/
|
2004-12-15 23:14:29 +00:00
|
|
|
PUBLIC void
|
1999-11-19 22:33:50 +00:00
|
|
|
_glapi_set_dispatch(struct _glapi_table *dispatch)
|
1999-11-11 01:22:25 +00:00
|
|
|
{
|
2010-02-26 23:43:46 +02:00
|
|
|
init_glapi_relocs_once();
|
2005-04-13 20:59:15 +00:00
|
|
|
|
2010-02-27 15:19:44 +02:00
|
|
|
if (dispatch == NULL) {
|
2004-07-05 22:40:54 +00:00
|
|
|
/* use the no-op functions */
|
|
|
|
|
dispatch = (struct _glapi_table *) __glapi_noop_table;
|
|
|
|
|
}
|
2010-03-02 03:31:16 +02:00
|
|
|
#ifdef DEBUG
|
2004-07-05 22:40:54 +00:00
|
|
|
else {
|
2010-02-27 00:24:58 +02:00
|
|
|
_glapi_check_table_not_null(dispatch);
|
1999-11-19 22:33:50 +00:00
|
|
|
_glapi_check_table(dispatch);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
1999-11-11 01:22:25 +00:00
|
|
|
|
2005-04-13 20:59:15 +00:00
|
|
|
#if defined(GLX_USE_TLS)
|
2005-08-10 23:54:15 +00:00
|
|
|
_glapi_tls_Dispatch = dispatch;
|
2005-04-13 20:59:15 +00:00
|
|
|
#elif defined(THREADS)
|
2005-08-10 23:54:15 +00:00
|
|
|
_glthread_SetTSD(&_gl_DispatchTSD, (void *) dispatch);
|
2009-08-25 09:37:43 -06:00
|
|
|
_glapi_Dispatch = (ThreadSafe) ? NULL : dispatch;
|
2010-02-27 15:19:44 +02:00
|
|
|
#else
|
2005-08-10 23:54:15 +00:00
|
|
|
_glapi_Dispatch = dispatch;
|
2010-02-27 15:19:44 +02:00
|
|
|
#endif
|
1999-11-11 01:22:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-16 17:31:59 +00:00
|
|
|
|
2004-11-27 03:51:11 +00:00
|
|
|
/**
|
1999-12-16 17:31:59 +00:00
|
|
|
* Return pointer to current dispatch table for calling thread.
|
1999-11-19 22:33:50 +00:00
|
|
|
*/
|
2004-12-15 23:14:29 +00:00
|
|
|
PUBLIC struct _glapi_table *
|
1999-11-19 22:33:50 +00:00
|
|
|
_glapi_get_dispatch(void)
|
1999-11-11 01:22:25 +00:00
|
|
|
{
|
2005-04-13 20:59:15 +00:00
|
|
|
#if defined(GLX_USE_TLS)
|
2010-02-27 15:19:44 +02:00
|
|
|
return _glapi_tls_Dispatch;
|
2005-04-13 20:59:15 +00:00
|
|
|
#elif defined(THREADS)
|
2010-02-27 15:19:44 +02:00
|
|
|
return (ThreadSafe)
|
2009-08-25 09:37:43 -06:00
|
|
|
? (struct _glapi_table *) _glthread_GetTSD(&_gl_DispatchTSD)
|
|
|
|
|
: _glapi_Dispatch;
|
2001-01-23 23:35:47 +00:00
|
|
|
#else
|
2010-02-27 15:19:44 +02:00
|
|
|
return _glapi_Dispatch;
|
2001-01-23 23:35:47 +00:00
|
|
|
#endif
|
2000-09-05 20:17:37 +00:00
|
|
|
}
|