diff options
Diffstat (limited to 'lib/mesa/src/mapi/table.h')
-rw-r--r-- | lib/mesa/src/mapi/table.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/mesa/src/mapi/table.h b/lib/mesa/src/mapi/table.h index f488b6d8a..a1af40c6f 100644 --- a/lib/mesa/src/mapi/table.h +++ b/lib/mesa/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 _glapi_table; +struct mapi_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 _glapi_table * +static inline const struct mapi_table * table_get_noop(void) { - return (const struct _glapi_table *) table_noop_array; + return (const struct mapi_table *) table_noop_array; } /** * Set the function of a slot. */ static inline void -table_set_func(struct _glapi_table *tbl, int slot, mapi_func func) +table_set_func(struct mapi_table *tbl, int slot, mapi_func func) { mapi_func *funcs = (mapi_func *) tbl; funcs[slot] = func; @@ -72,7 +72,7 @@ table_set_func(struct _glapi_table *tbl, int slot, mapi_func func) * Return the function of a slot. */ static inline mapi_func -table_get_func(const struct _glapi_table *tbl, int slot) +table_get_func(const struct mapi_table *tbl, int slot) { const mapi_func *funcs = (const mapi_func *) tbl; return funcs[slot]; |