Lines Matching defs:share
1523 puts(" '+' separates names which will share a pane.");
1818 * If "share" is non-NULL and GALLIUM_HUD_SHARE=x,y is set, increment the
1819 * reference counter of "share", set "cso" as the recording or drawing context
1820 * according to the environment variable, and return "share".
1821 * This allows sharing the HUD instance within a multi-context share group,
1826 struct hud_context *share)
1834 if (share && share_env) {
1835 /* All contexts in a share group share the HUD instance.
1841 int context_id = p_atomic_inc_return(&share->refcount) - 1;
1844 assert(!share->record_pipe);
1845 hud_set_record_context(share, cso_get_pipe_context(cso));
1849 assert(!share->pipe);
1850 hud_set_draw_context(share, cso, st);
1853 return share;