diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-06-14 12:51:04 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-06-15 14:00:35 -0700 |
commit | ecec578e35f91a2cbc5d07bc8d45241af7bb585f (patch) | |
tree | 646161a61830709208446359b01b67b9df8cbe5f /glx/Makefile.am | |
parent | c3df4df40761760b281a21f63336ca955670f7bc (diff) |
glx: Add _glapi_create_table_from_handle
_glapi_create_table_from_handle was recently added to mesa to ease creation of
a _glapi_table. This commit brings this API over to xserver for use in
XQuartz (next commit).
The API was generated with scripts from current mesa followed by various
script-foo to remove entries that are not in the server and add those which
are still in the server but not in mesa (CullParameterdvEXT and
CullParameterfvEXT)
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'glx/Makefile.am')
-rw-r--r-- | glx/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/glx/Makefile.am b/glx/Makefile.am index 5f74ab890..7cc2521d5 100644 --- a/glx/Makefile.am +++ b/glx/Makefile.am @@ -42,6 +42,7 @@ glapi_sources = \ glapitable.h \ glapi.c \ glapi.h \ + glapi_gentable.c \ glapioffsets.h \ glprocs.h \ glthread.c \ |