mapi/glapi: remove unused _glapi_check_table_not_null
authorEmil Velikov <emil.velikov@collabora.com>
Thu, 25 Aug 2016 15:58:58 +0000 (16:58 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Thu, 6 Oct 2016 14:03:46 +0000 (15:03 +0100)
Function was never part of the API/ABI and the final user was removed
with commit a73c6540d9a7f6e26d8568ba2fc522cb865f0a6c, back in 2010.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
src/mapi/glapi/glapi_getproc.c
src/mapi/glapi/glapi_priv.h

index a50b5b354028b63a35b2a030dd61efdb40168cea..1348b15bae93def1a517f83b35d84498c03bc291 100644 (file)
@@ -582,26 +582,6 @@ _glapi_get_dispatch_table_size(void)
 }
 
 
-/**
- * Make sure there are no NULL pointers in the given dispatch table.
- * Intended for debugging purposes.
- */
-void
-_glapi_check_table_not_null(const struct _glapi_table *table)
-{
-#ifdef EXTRA_DEBUG /* set to DEBUG for extra DEBUG */
-   const GLuint entries = _glapi_get_dispatch_table_size();
-   const void **tab = (const void **) table;
-   GLuint i;
-   for (i = 1; i < entries; i++) {
-      assert(tab[i]);
-   }
-#else
-   (void) table;
-#endif
-}
-
-
 /**
  * Do some spot checks to be sure that the dispatch table
  * slots are assigned correctly. For debugging only.
index 337913acc711c2b276039861e1d305e0fcc90306..4eb0911df4592bd77d9c69d71913f14e14120242 100644 (file)
@@ -55,10 +55,6 @@ extern "C" {
 
 /* getproc */
 
-extern void
-_glapi_check_table_not_null(const struct _glapi_table *table);
-
-
 extern void
 _glapi_check_table(const struct _glapi_table *table);