It has been unused for a long time, plus makes the gallium dri modules
require an extra glapi symbol relative to their classic counterparts.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
ST_MANAGER_BROKEN_INVALIDATE
};
-/**
- * The return type of st_api->get_proc_address.
- */
-typedef void (*st_proc_t)(void);
-
struct pipe_context;
struct pipe_resource;
struct pipe_fence_handle;
int *gl_es1_version,
int *gl_es2_version);
- /**
- * Return an API entry point.
- *
- * For GL this is the same as _glapi_get_proc_address.
- */
- st_proc_t (*get_proc_address)(struct st_api *stapi, const char *procname);
-
/**
* Create a rendering context.
*/
return ret;
}
-static st_proc_t
-st_api_get_proc_address(struct st_api *stapi, const char *procname)
-{
- return (st_proc_t) _glapi_get_proc_address(procname);
-}
-
static void
st_api_destroy(struct st_api *stapi)
{
ST_API_FEATURE_MS_VISUALS_MASK,
st_api_destroy,
st_api_query_versions,
- st_api_get_proc_address,
st_api_create_context,
st_api_make_current,
st_api_get_current,