mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 11:28:15 +02:00
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 <jeremyhu@apple.com>
19 lines
261 B
Makefile
19 lines
261 B
Makefile
# src/mapi/glapi/sources.mak
|
|
|
|
GLAPI_SOURCES = \
|
|
glapi_dispatch.c \
|
|
glapi_entrypoint.c \
|
|
glapi_gentable.c \
|
|
glapi_getproc.c \
|
|
glapi_nop.c \
|
|
glthread.c \
|
|
glapi.c
|
|
|
|
X86_API = \
|
|
glapi_x86.S
|
|
|
|
X86-64_API = \
|
|
glapi_x86-64.S
|
|
|
|
SPARC_API = \
|
|
glapi_sparc.S
|