2008-11-24 10:44:16 -05:00
|
|
|
/*
|
|
|
|
* This file can be build as a shared library and then used as an
|
|
|
|
* LD_PRELOAD to fake a system where NPOTs is not supported. It simply
|
|
|
|
* overrides glGetString and removes the extension strings.
|
|
|
|
*/
|
|
|
|
|
2009-01-05 12:05:30 -05:00
|
|
|
/* This is just included to get the right GL header */
|
|
|
|
#include <cogl/cogl.h>
|
|
|
|
|
2008-11-24 10:44:16 -05:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2009-01-05 12:05:30 -05:00
|
|
|
/* If RTLD_NEXT isn't available then try just using NULL */
|
|
|
|
#ifdef RTLD_NEXT
|
|
|
|
#define LIB_HANDLE RTLD_NEXT
|
|
|
|
#else
|
|
|
|
#define LIB_HANDLE NULL
|
|
|
|
#endif
|
|
|
|
|
2008-11-24 10:44:16 -05:00
|
|
|
typedef const GLubyte * (* GetStringFunc) (GLenum name);
|
|
|
|
|
|
|
|
static const char * const bad_strings[]
|
|
|
|
= { "GL_ARB_texture_non_power_of_two",
|
|
|
|
"GL_ARB_texture_rectangle",
|
|
|
|
"GL_EXT_texture_rectangle",
|
|
|
|
NULL };
|
|
|
|
|
|
|
|
const GLubyte *
|
|
|
|
glGetString (GLenum name)
|
|
|
|
{
|
|
|
|
const GLubyte *ret = NULL;
|
|
|
|
static GetStringFunc func = NULL;
|
|
|
|
static GLubyte *extensions = NULL;
|
|
|
|
|
2009-01-05 12:05:30 -05:00
|
|
|
if (func == NULL
|
|
|
|
&& (func = (GetStringFunc) dlsym (LIB_HANDLE, "glGetString")) == NULL)
|
2008-11-24 10:44:16 -05:00
|
|
|
fprintf (stderr, "dlsym: %s\n", dlerror ());
|
2009-01-05 12:05:30 -05:00
|
|
|
else if (func == glGetString)
|
|
|
|
fprintf (stderr, "dlsym returned the wrapper of glGetString\n");
|
2008-11-24 10:44:16 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = (* func) (name);
|
|
|
|
|
|
|
|
if (name == GL_EXTENSIONS)
|
|
|
|
{
|
|
|
|
if (extensions == NULL)
|
|
|
|
{
|
|
|
|
if ((extensions = (GLubyte *) strdup ((char *) ret)) == NULL)
|
|
|
|
fprintf (stderr, "strdup: %s\n", strerror (errno));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GLubyte *dst = extensions, *src = extensions;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
const char * const *str = bad_strings;
|
|
|
|
GLubyte *end;
|
|
|
|
|
|
|
|
while (isspace (*src))
|
|
|
|
*(dst++) = *(src++);
|
|
|
|
|
|
|
|
if (*src == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
for (end = src + 1; *end && !isspace (*end); end++);
|
|
|
|
|
|
|
|
while (*str && strncmp ((char *) src, *str, end - src))
|
|
|
|
str++;
|
|
|
|
|
|
|
|
if (*str == NULL)
|
|
|
|
{
|
|
|
|
memcpy (dst, src, end - src);
|
|
|
|
dst += end - src;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dst = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = extensions;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|