quakeforge/tools/gl_stub/gl_stub.c

79 lines
1.6 KiB
C
Raw Normal View History

2002-03-11 23:55:50 +00:00
#include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include <X11/cursorfont.h>
#include "QF/GL/defines.h"
2002-03-11 23:55:50 +00:00
#include "QF/GL/extensions.h"
#include "QF/GL/types.h"
2002-03-11 23:55:50 +00:00
#include "QF/hash.h"
2002-03-11 23:55:50 +00:00
typedef XID GLXDrawable;
typedef struct __GLXcontextRec *GLXContext;
2002-03-11 23:55:50 +00:00
#define QFGL_DONT_NEED(ret, func, params) QFGL_NEED(ret, func, params)
2002-03-11 23:55:50 +00:00
#undef QFGL_NEED
2002-03-11 23:55:50 +00:00
#define QFGL_NEED(ret, name, args) \
ret GLAPIENTRY norm_##name args;
#include "QF/GL/qf_funcs_list.h"
#include "glx_funcs_list.h"
#undef QFGL_NEED
2002-03-11 23:55:50 +00:00
#define QFGL_NEED(ret, name, args) \
ret GLAPIENTRY trace_##name args;
#include "QF/GL/qf_funcs_list.h"
#include "glx_funcs_list.h"
#undef QFGL_NEED
2002-03-11 23:55:50 +00:00
typedef struct {
const char *name;
void *norm;
void *trace;
} gl_stub_t;
2002-03-11 23:55:50 +00:00
static gl_stub_t gl_stub_funcs[] = {
#define QFGL_NEED(ret, name, args) \
{#name, norm_##name, trace_##name},
#include "QF/GL/qf_funcs_list.h"
#include "glx_funcs_list.h"
#undef QFGL_NEED
};
2002-03-11 23:55:50 +00:00
#define NUM_FUNCS (sizeof (gl_stub_funcs) / sizeof (gl_stub_funcs[0]))
2002-03-11 23:55:50 +00:00
static int
cmp (const void *a, const void *b)
{
2002-03-11 23:55:50 +00:00
return strcmp (((gl_stub_t *)a)->name, ((gl_stub_t *)b)->name);
}
2002-03-11 23:55:50 +00:00
void *
glXGetProcAddressARB (const GLubyte *procName)
{
2002-03-11 23:55:50 +00:00
static int called;
static int trace;
2002-03-11 23:55:50 +00:00
gl_stub_t *stub;
gl_stub_t key;
2002-03-11 23:55:50 +00:00
if (!called) {
char *glstub_trace;
2002-03-11 23:55:50 +00:00
qsort (gl_stub_funcs, NUM_FUNCS, sizeof (gl_stub_t), cmp);
called = 1;
glstub_trace = getenv ("GLSTUB_TRACE");
if (glstub_trace)
trace = atoi (glstub_trace);
}
2002-03-11 23:55:50 +00:00
key.name = procName;
stub = bsearch (&key, gl_stub_funcs, NUM_FUNCS, sizeof (gl_stub_t), cmp);
if (!stub)
return 0;
return trace ? stub->trace : stub->norm;
}