Home
last modified time | relevance | path

Searched defs:pipe_context (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/mesa3d/src/gallium/include/pipe/
H A Dp_context.h105 struct pipe_context { struct
128 void (*destroy)(struct pipe_context *); argument
162 pipe_draw_func draw_vbo;
197 void (*draw_vertex_state)(struct pipe_context *ctx, argument
211 void (*render_condition)(struct pipe_context *pipe, argument
222 void (*render_condition_mem)(struct pipe_context *pipe, argument
230 struct pipe_query *(*create_query)(struct pipe_context *pipe, argument
249 struct pipe_query *(*create_batch_query)(struct pipe_context *pipe, argument
253 void (*destroy_query)(struct pipe_context *pipe, argument
256 bool (*begin_query)(struct pipe_context *pipe, struct pipe_query *q); argument
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/util/
H A Du_live_shader_cache.c51 void *(*create_shader)(struct pipe_context *, in util_live_shader_cache_init() argument
53 void (*destroy_shader)(struct pipe_context *, void *)) in util_live_shader_cache_init()
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/mesa/pipe/
H A Dcontext.rs40 pub(super) fn new(context: *mut pipe_context, screen: &Arc<PipeScreen>) -> Option<Self> { in new()