summaryrefslogtreecommitdiffstats
path: root/src/mapi/table.h
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-04-13 18:23:50 +0100
committerEmil Velikov <[email protected]>2017-05-04 18:17:03 +0100
commit4562d88c1d6f02b0601abd97f421a72adf64b3a6 (patch)
tree7132b6a381a2d9c98467fc6be8687208e76fcc4e /src/mapi/table.h
parent424cb9d3eaf2cd4e049c728920a9965df1fbcfac (diff)
mapi: replace mapi_table abstraction
Replace all instances of mapi_table with the actual struct _glapi_table. The former may have been needed when the OpenVG was around. But since that one is long gone, there' no point in having the current confusing mix of the two. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/mapi/table.h')
-rw-r--r--src/mapi/table.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mapi/table.h b/src/mapi/table.h
index a1af40c6fc1..f488b6d8a75 100644
--- a/src/mapi/table.h
+++ b/src/mapi/table.h
@@ -37,7 +37,7 @@
#define MAPI_TABLE_NUM_SLOTS (MAPI_TABLE_NUM_STATIC + MAPI_TABLE_NUM_DYNAMIC)
#define MAPI_TABLE_SIZE (MAPI_TABLE_NUM_SLOTS * sizeof(mapi_func))
-struct mapi_table;
+struct _glapi_table;
extern const mapi_func table_noop_array[];
@@ -52,17 +52,17 @@ table_set_noop_handler(nop_handler_proc func);
/**
* Get the no-op dispatch table.
*/
-static inline const struct mapi_table *
+static inline const struct _glapi_table *
table_get_noop(void)
{
- return (const struct mapi_table *) table_noop_array;
+ return (const struct _glapi_table *) table_noop_array;
}
/**
* Set the function of a slot.
*/
static inline void
-table_set_func(struct mapi_table *tbl, int slot, mapi_func func)
+table_set_func(struct _glapi_table *tbl, int slot, mapi_func func)
{
mapi_func *funcs = (mapi_func *) tbl;
funcs[slot] = func;
@@ -72,7 +72,7 @@ table_set_func(struct mapi_table *tbl, int slot, mapi_func func)
* Return the function of a slot.
*/
static inline mapi_func
-table_get_func(const struct mapi_table *tbl, int slot)
+table_get_func(const struct _glapi_table *tbl, int slot)
{
const mapi_func *funcs = (const mapi_func *) tbl;
return funcs[slot];