diff options
author | Jeremy Huddleston <[email protected]> | 2011-06-09 16:59:49 -0700 |
---|---|---|
committer | Jeremy Huddleston <[email protected]> | 2011-06-11 21:55:01 -0700 |
commit | 85937f4c0d4a78d3a11e3c1fa6148640f2a9ad7b (patch) | |
tree | f3b139670322e4e8beccc620bfcf09153e6d6aa1 /src/mapi/glapi/sources.mak | |
parent | 837dc6101120a90f7a8d29ea45cf8e849a3542c2 (diff) |
glapi: Add API that can create a _glapi_table from a dlfcn handle
Example usage:
void *handle = dlopen(opengl_library_path, RTLD_LOCAL);
struct _glapi_table *disp = _glapi_create_table_from_handle(handle, "gl");
Signed-off-by: Jeremy Huddleston <[email protected]>
Diffstat (limited to 'src/mapi/glapi/sources.mak')
-rw-r--r-- | src/mapi/glapi/sources.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mapi/glapi/sources.mak b/src/mapi/glapi/sources.mak index 0b4d8cf65df..dfc6cc6db22 100644 --- a/src/mapi/glapi/sources.mak +++ b/src/mapi/glapi/sources.mak @@ -3,6 +3,7 @@ GLAPI_SOURCES = \ glapi_dispatch.c \ glapi_entrypoint.c \ + glapi_gentable.c \ glapi_getproc.c \ glapi_nop.c \ glthread.c \ |