Home
last modified time | relevance | path

Searched refs:st_api (Results 1 – 17 of 17) sorted by relevance

/third_party/mesa3d/src/gallium/include/frontend/
Dapi.h523 struct st_api struct
548 void (*destroy)(struct st_api *stapi); argument
554 void (*query_versions)(struct st_api *stapi, struct st_manager *sm, argument
564 struct st_context_iface *(*create_context)(struct st_api *stapi, argument
576 bool (*make_current)(struct st_api *stapi, argument
584 struct st_context_iface *(*get_current)(struct st_api *stapi); argument
590 void (*destroy_drawable)(struct st_api *stapi, argument
/third_party/mesa3d/src/gallium/frontends/dri/
Ddri_context.c53 struct st_api *stapi = screen->st_api; in dri_create_context()
266 struct st_api *stapi = screen->st_api; in dri_unbind_context()
322 struct st_api *stapi = screen->st_api; in dri_get_current()
Ddri_screen.c470 msaa_samples_max = (screen->st_api->feature_mask & ST_API_FEATURE_MS_VISUALS_MASK) in dri_fill_in_modes()
780 if (screen->st_api && screen->st_api->destroy) in dri_destroy_screen_helper()
781 screen->st_api->destroy(screen->st_api); in dri_destroy_screen_helper()
850 screen->st_api = st_gl_api_create(); in dri_init_screen_helper()
851 if (!screen->st_api) in dri_init_screen_helper()
861 screen->st_api->query_versions(screen->st_api, &screen->base, in dri_init_screen_helper()
Ddri_context.h41 struct st_api;
60 struct st_api *stapi;
Ddri_screen.h54 struct st_api *st_api; member
Ddri_drawable.c194 struct st_api *stapi = screen->st_api; in dri_destroy_buffer()
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
Dxm_public.h35 struct st_api;
41 struct st_api *(*create_st_api)( void );
Dxm_api.c85 static struct st_api *stapi;
/third_party/mesa3d/src/gallium/frontends/hgl/
Dhgl_context.h55 struct st_api* api;
83 struct st_api* hgl_create_st_api(void);
Dhgl.c276 struct st_api*
/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_device.h46 struct st_api;
61 struct st_api *stapi;
Dstw_st.h40 struct st_api *
Dstw_st.c600 struct st_api *
/third_party/mesa3d/src/mesa/state_tracker/
Dst_manager.c743 st_api_destroy_drawable(struct st_api *stapi, in st_api_destroy_drawable()
1000 st_api_create_context(struct st_api *stapi, struct st_manager *smapi, in st_api_create_context()
1149 st_api_get_current(struct st_api *stapi) in st_api_get_current()
1203 st_api_make_current(struct st_api *stapi, struct st_context_iface *stctxi, in st_api_make_current()
1276 st_api_destroy(struct st_api *stapi) in st_api_destroy()
1436 st_api_query_versions(struct st_api *stapi, struct st_manager *sm, in st_api_query_versions()
1450 static const struct st_api st_gl_api = {
1468 struct st_api *
1471 return (struct st_api *) &st_gl_api; in st_gl_api_create()
Dst_gl_api.h5 struct st_api *st_gl_api_create(void);
/third_party/mesa3d/src/gallium/frontends/osmesa/
Dosmesa.c135 static struct st_api *stapi = NULL;
183 static struct st_api *
590 struct st_api *stapi = get_st_api(); in OSMesaCreateContextAttribs()
762 struct st_api *stapi = get_st_api(); in OSMesaMakeCurrent()
844 struct st_api *stapi = get_st_api(); in OSMesaGetCurrentContext()
/third_party/mesa3d/docs/relnotes/
D7.10.rst631 - gallium: Add st_api::name.
632 - gallium: Add st_context_iface::share to st_api.