X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=glaze.c;h=72070256fb4365d6874ba58a3d28f94495c5f9e9;hb=f2c5ebbfe53ee598aa2b354f0e013aba3a10fffc;hp=f52463d82d49cc818467f94eda865c2349b18521;hpb=c06f006c64765d0b2844ee7f5a3c85ca241eca38;p=glaze diff --git a/glaze.c b/glaze.c index f52463d..7207025 100644 --- a/glaze.c +++ b/glaze.c @@ -22,50 +22,42 @@ #define _GNU_SOURCE #include +#include "glaze.h" + #include #include -void *libgl_handle; - -static void -open_libgl_handle (void) +void * +glaze_lookup (char *function) { - const char *path; - - if (libgl_handle) - return; - - path = getenv ("GLAZE_LIBGL"); - if (path == NULL) { - fprintf (stderr, "GLAZE_LIBGL unset. Please set to path of real libGL.so under glaze.\n"); - exit (1); - } + static void *libgl_handle = NULL; + void *ret; - libgl_handle = dlopen (path, RTLD_LAZY | RTLD_GLOBAL); if (libgl_handle == NULL) { - fprintf (stderr, "Error: Failed to dlopen %s\n", path); - exit (1); + const char *path; + + path = getenv ("GLAZE_LIBGL"); + if (path == NULL) { + fprintf (stderr, "GLAZE_LIBGL unset. " + "Please set to path of libGL.so under glaze.\n" + ); + exit (1); + } + + libgl_handle = dlopen (path, RTLD_LAZY | RTLD_GLOBAL); + if (libgl_handle == NULL) { + fprintf (stderr, "Error: Failed to dlopen %s\n", path); + exit (1); + } } -} -static void -glaze_init (void) __attribute__((constructor)); + ret = dlsym (libgl_handle, function); -static void -glaze_init (void) -{ - open_libgl_handle (); -} + if (ret == NULL) { + fprintf (stderr, "Error: glaze_lookup failed to dlsym %s\n", + function); + exit (1); + } -static void * -resolve (const char *name) -{ - return dlsym (libgl_handle, name); + return ret; } - -#define GLAZE_API(name) \ -void * name() __attribute__((ifunc(#name "_resolver"))); \ -static void * \ -name ## _resolver (void) { return resolve (#name); } - -#include "specs/gl.def"