/external/mesa3d/src/gallium/drivers/galahad/ |
D | glhd_context.c | 43 struct pipe_context *pipe = glhd_pipe->pipe; in galahad_context_destroy() local 45 pipe->destroy(pipe); in galahad_context_destroy() 55 struct pipe_context *pipe = glhd_pipe->pipe; in galahad_context_draw_vbo() local 61 pipe->draw_vbo(pipe, info); in galahad_context_draw_vbo() 69 struct pipe_context *pipe = glhd_pipe->pipe; in galahad_context_create_query() local 72 !pipe->screen->get_param(pipe->screen, PIPE_CAP_OCCLUSION_QUERY)) { in galahad_context_create_query() 77 !pipe->screen->get_param(pipe->screen, PIPE_CAP_TIMER_QUERY)) { in galahad_context_create_query() 81 return pipe->create_query(pipe, in galahad_context_create_query() 90 struct pipe_context *pipe = glhd_pipe->pipe; in galahad_context_destroy_query() local 92 pipe->destroy_query(pipe, in galahad_context_destroy_query() [all …]
|
/external/mesa3d/src/gallium/drivers/identity/ |
D | id_context.c | 41 struct pipe_context *pipe = id_pipe->pipe; in identity_destroy() local 43 pipe->destroy(pipe); in identity_destroy() 53 struct pipe_context *pipe = id_pipe->pipe; in identity_draw_vbo() local 55 pipe->draw_vbo(pipe, info); in identity_draw_vbo() 63 struct pipe_context *pipe = id_pipe->pipe; in identity_create_query() local 65 return pipe->create_query(pipe, in identity_create_query() 74 struct pipe_context *pipe = id_pipe->pipe; in identity_destroy_query() local 76 pipe->destroy_query(pipe, in identity_destroy_query() 85 struct pipe_context *pipe = id_pipe->pipe; in identity_begin_query() local 87 pipe->begin_query(pipe, in identity_begin_query() [all …]
|
/external/mesa3d/src/gallium/drivers/trace/ |
D | tr_context.c | 90 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_draw_vbo() local 94 trace_dump_arg(ptr, pipe); in trace_context_draw_vbo() 97 pipe->draw_vbo(pipe, info); in trace_context_draw_vbo() 108 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_create_query() local 113 trace_dump_arg(ptr, pipe); in trace_context_create_query() 116 result = pipe->create_query(pipe, query_type); in trace_context_create_query() 131 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_destroy_query() local 135 trace_dump_arg(ptr, pipe); in trace_context_destroy_query() 138 pipe->destroy_query(pipe, query); in trace_context_destroy_query() 149 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_begin_query() local [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_blitter.c | 127 struct blitter_context *util_blitter_create(struct pipe_context *pipe) in util_blitter_create() argument 141 ctx->base.pipe = pipe; in util_blitter_create() 159 pipe->screen->get_shader_param(pipe->screen, PIPE_SHADER_GEOMETRY, in util_blitter_create() 162 pipe->screen->get_shader_param(pipe->screen, PIPE_SHADER_VERTEX, in util_blitter_create() 165 pipe->screen->get_param(pipe->screen, in util_blitter_create() 169 pipe->screen->get_param(pipe->screen, in util_blitter_create() 174 ctx->blend_keep_color = pipe->create_blend_state(pipe, &blend); in util_blitter_create() 177 ctx->blend_write_color = pipe->create_blend_state(pipe, &blend); in util_blitter_create() 182 pipe->create_depth_stencil_alpha_state(pipe, &dsa); in util_blitter_create() 188 pipe->create_depth_stencil_alpha_state(pipe, &dsa); in util_blitter_create() [all …]
|
/external/mesa3d/src/gallium/drivers/rbug/ |
D | rbug_context.c | 44 struct pipe_context *pipe = rb_pipe->pipe; in rbug_destroy() local 48 pipe->destroy(pipe); in rbug_destroy() 49 rb_pipe->pipe = NULL; in rbug_destroy() 118 struct pipe_context *pipe = rb_pipe->pipe; in rbug_draw_vbo() local 128 pipe->draw_vbo(pipe, info); in rbug_draw_vbo() 140 struct pipe_context *pipe = rb_pipe->pipe; in rbug_create_query() local 143 return pipe->create_query(pipe, in rbug_create_query() 153 struct pipe_context *pipe = rb_pipe->pipe; in rbug_destroy_query() local 156 pipe->destroy_query(pipe, in rbug_destroy_query() 166 struct pipe_context *pipe = rb_pipe->pipe; in rbug_begin_query() local [all …]
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
D | device.cpp | 32 get_compute_param(pipe_screen *pipe, pipe_compute_cap cap) { in get_compute_param() argument 33 int sz = pipe->get_compute_param(pipe, cap, NULL); in get_compute_param() 36 pipe->get_compute_param(pipe, cap, &v.front()); in get_compute_param() 42 pipe = pipe_loader_create_screen(ldev, PIPE_SEARCH_DIR); in _cl_device_id() 43 if (!pipe || !pipe->get_param(pipe, PIPE_CAP_COMPUTE)) in _cl_device_id() 47 _cl_device_id::_cl_device_id(_cl_device_id &&dev) : pipe(dev.pipe), ldev(dev.ldev) { in _cl_device_id() 49 dev.pipe = NULL; in _cl_device_id() 53 if (pipe) in ~_cl_device_id() 54 pipe->destroy(pipe); in ~_cl_device_id() 97 return pipe->get_param(pipe, PIPE_CAP_MAX_TEXTURE_2D_LEVELS); in max_image_levels_2d() [all …]
|
D | resource.cpp | 34 pipe({ (unsigned)origin[0], (unsigned)origin[1], in box() 40 return &pipe; in operator const pipe_box*() 44 pipe_box pipe; member in __anon569116270111::box 49 dev(dev), obj(obj), pipe(NULL), offset{0} { in resource() 60 q.pipe->resource_copy_region(q.pipe, pipe, 0, p[0], p[1], p[2], in copy() 61 src_res.pipe, 0, in copy() 88 u_sampler_view_default_template(&info, pipe, pipe->format); in bind_sampler_view() 89 return q.pipe->create_sampler_view(q.pipe, pipe, &info); in bind_sampler_view() 95 q.pipe->sampler_view_destroy(q.pipe, st); in unbind_sampler_view() 102 info.format = pipe->format; in bind_surface() [all …]
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_matrix_filter.c | 68 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_vert_shader() 147 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_frag_shader() 151 vl_matrix_filter_init(struct vl_matrix_filter *filter, struct pipe_context *pipe, in vl_matrix_filter_init() argument 163 assert(filter && pipe); in vl_matrix_filter_init() 168 filter->pipe = pipe; in vl_matrix_filter_init() 173 filter->rs_state = pipe->create_rasterizer_state(pipe, &rs_state); in vl_matrix_filter_init() 186 filter->blend = pipe->create_blend_state(pipe, &blend); in vl_matrix_filter_init() 200 filter->sampler = pipe->create_sampler_state(pipe, &sampler); in vl_matrix_filter_init() 204 filter->quad = vl_vb_upload_quads(pipe); in vl_matrix_filter_init() 213 filter->ves = pipe->create_vertex_elements_state(pipe, 1, &ve); in vl_matrix_filter_init() [all …]
|
D | vl_zscan.c | 166 return ureg_create_shader_and_destroy(shader, zscan->pipe); in create_vert_shader() 228 return ureg_create_shader_and_destroy(shader, zscan->pipe); in create_frag_shader() 247 zscan->pipe->delete_vs_state(zscan->pipe, zscan->vs); in init_shaders() 258 zscan->pipe->delete_vs_state(zscan->pipe, zscan->vs); in cleanup_shaders() 259 zscan->pipe->delete_fs_state(zscan->pipe, zscan->fs); in cleanup_shaders() 275 zscan->rs_state = zscan->pipe->create_rasterizer_state(zscan->pipe, &rs_state); in init_state() 294 zscan->blend = zscan->pipe->create_blend_state(zscan->pipe, &blend); in init_state() 309 zscan->samplers[i] = zscan->pipe->create_sampler_state(zscan->pipe, &sampler); in init_state() 319 zscan->pipe->delete_sampler_state(zscan->pipe, zscan->samplers[i]); in init_state() 321 zscan->pipe->delete_rasterizer_state(zscan->pipe, zscan->rs_state); in init_state() [all …]
|
D | vl_median_filter.c | 66 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_vert_shader() 80 struct pipe_screen *screen = filter->pipe->screen; in create_frag_shader() 154 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_frag_shader() 238 vl_median_filter_init(struct vl_median_filter *filter, struct pipe_context *pipe, in vl_median_filter_init() argument 249 assert(filter && pipe); in vl_median_filter_init() 254 filter->pipe = pipe; in vl_median_filter_init() 259 filter->rs_state = pipe->create_rasterizer_state(pipe, &rs_state); in vl_median_filter_init() 272 filter->blend = pipe->create_blend_state(pipe, &blend); in vl_median_filter_init() 286 filter->sampler = pipe->create_sampler_state(pipe, &sampler); in vl_median_filter_init() 290 filter->quad = vl_vb_upload_quads(pipe); in vl_median_filter_init() [all …]
|
D | vl_mc.c | 152 return ureg_create_shader_and_destroy(shader, r->pipe); in create_ref_vert_shader() 221 return ureg_create_shader_and_destroy(shader, r->pipe); in create_ref_frag_shader() 306 return ureg_create_shader_and_destroy(shader, r->pipe); in create_ycbcr_vert_shader() 368 return ureg_create_shader_and_destroy(shader, r->pipe); in create_ycbcr_frag_shader() 391 r->sampler_ref = r->pipe->create_sampler_state(r->pipe, &sampler); in init_pipe_state() 409 r->blend_clear[i] = r->pipe->create_blend_state(r->pipe, &blend); in init_pipe_state() 415 r->blend_add[i] = r->pipe->create_blend_state(r->pipe, &blend); in init_pipe_state() 421 r->blend_sub[i] = r->pipe->create_blend_state(r->pipe, &blend); in init_pipe_state() 433 r->rs_state = r->pipe->create_rasterizer_state(r->pipe, &rs_state); in init_pipe_state() 443 r->pipe->delete_blend_state(r->pipe, r->blend_sub[i]); in init_pipe_state() [all …]
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_context.c | 80 struct pipe_context *pipe; member 237 u_vbuf_get_caps(cso->pipe->screen, &caps); in cso_init_vbuf() 249 cso->vbuf = u_vbuf_create(cso->pipe, &caps); in cso_init_vbuf() 253 struct cso_context *cso_create_context( struct pipe_context *pipe ) in cso_create_context() argument 266 ctx->pipe = pipe; in cso_create_context() 274 if (pipe->screen->get_shader_param(pipe->screen, PIPE_SHADER_GEOMETRY, in cso_create_context() 278 if (pipe->screen->get_param(pipe->screen, in cso_create_context() 297 if (ctx->pipe) { in cso_release_all() 298 ctx->pipe->bind_blend_state( ctx->pipe, NULL ); in cso_release_all() 299 ctx->pipe->bind_rasterizer_state( ctx->pipe, NULL ); in cso_release_all() [all …]
|
/external/webrtc/webrtc/test/ |
D | fake_network_pipe_unittest.cc | 55 void SendPackets(FakeNetworkPipe* pipe, int number_packets, int kPacketSize) { in SendPackets() argument 58 pipe->SendPacket(packet.get(), kPacketSize); in SendPackets() 77 rtc::scoped_ptr<FakeNetworkPipe> pipe( in TEST_F() local 79 pipe->SetReceiver(receiver_.get()); in TEST_F() 85 SendPackets(pipe.get(), kNumPackets , kPacketSize); in TEST_F() 93 pipe->Process(); in TEST_F() 98 pipe->Process(); in TEST_F() 103 pipe->Process(); in TEST_F() 108 pipe->Process(); in TEST_F() 117 rtc::scoped_ptr<FakeNetworkPipe> pipe( in TEST_F() local [all …]
|
/external/mesa3d/src/gallium/drivers/nv50/ |
D | nv50_state.c | 116 nv50_blend_state_create(struct pipe_context *pipe, in nv50_blend_state_create() argument 124 if (nv50_context(pipe)->screen->tesla->oclass >= NVA3_3D_CLASS) { in nv50_blend_state_create() 129 so->pipe = *cso; in nv50_blend_state_create() 145 if (nv50_context(pipe)->screen->tesla->oclass >= NVA3_3D_CLASS) { in nv50_blend_state_create() 208 nv50_blend_state_bind(struct pipe_context *pipe, void *hwcso) in nv50_blend_state_bind() argument 210 struct nv50_context *nv50 = nv50_context(pipe); in nv50_blend_state_bind() 217 nv50_blend_state_delete(struct pipe_context *pipe, void *hwcso) in nv50_blend_state_delete() argument 224 nv50_rasterizer_state_create(struct pipe_context *pipe, in nv50_rasterizer_state_create() argument 233 so->pipe = *cso; in nv50_rasterizer_state_create() 337 nv50_rasterizer_state_bind(struct pipe_context *pipe, void *hwcso) in nv50_rasterizer_state_bind() argument [all …]
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
D | nvc0_state.c | 86 nvc0_blend_state_create(struct pipe_context *pipe, in nvc0_blend_state_create() argument 97 so->pipe = *cso; in nvc0_blend_state_create() 192 nvc0_blend_state_bind(struct pipe_context *pipe, void *hwcso) in nvc0_blend_state_bind() argument 194 struct nvc0_context *nvc0 = nvc0_context(pipe); in nvc0_blend_state_bind() 201 nvc0_blend_state_delete(struct pipe_context *pipe, void *hwcso) in nvc0_blend_state_delete() argument 208 nvc0_rasterizer_state_create(struct pipe_context *pipe, in nvc0_rasterizer_state_create() argument 217 so->pipe = *cso; in nvc0_rasterizer_state_create() 320 nvc0_rasterizer_state_bind(struct pipe_context *pipe, void *hwcso) in nvc0_rasterizer_state_bind() argument 322 struct nvc0_context *nvc0 = nvc0_context(pipe); in nvc0_rasterizer_state_bind() 329 nvc0_rasterizer_state_delete(struct pipe_context *pipe, void *hwcso) in nvc0_rasterizer_state_delete() argument [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_state_blend.c | 39 softpipe_create_blend_state(struct pipe_context *pipe, in softpipe_create_blend_state() argument 47 softpipe_bind_blend_state(struct pipe_context *pipe, in softpipe_bind_blend_state() argument 50 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_blend_state() 61 softpipe_delete_blend_state(struct pipe_context *pipe, in softpipe_delete_blend_state() argument 69 softpipe_set_blend_color(struct pipe_context *pipe, in softpipe_set_blend_color() argument 72 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_blend_color() 89 softpipe_create_depth_stencil_state(struct pipe_context *pipe, in softpipe_create_depth_stencil_state() argument 97 softpipe_bind_depth_stencil_state(struct pipe_context *pipe, in softpipe_bind_depth_stencil_state() argument 100 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_depth_stencil_state() 109 softpipe_delete_depth_stencil_state(struct pipe_context *pipe, void *depth) in softpipe_delete_depth_stencil_state() argument [all …]
|
D | sp_context.c | 89 softpipe_destroy( struct pipe_context *pipe ) in softpipe_destroy() argument 91 struct softpipe_context *softpipe = softpipe_context( pipe ); in softpipe_destroy() 96 pipe->delete_sampler_state(pipe, softpipe->pstipple.sampler); in softpipe_destroy() 159 softpipe_is_resource_referenced( struct pipe_context *pipe, in softpipe_is_resource_referenced() argument 163 struct softpipe_context *softpipe = softpipe_context( pipe ); in softpipe_is_resource_referenced() 199 softpipe_render_condition( struct pipe_context *pipe, in softpipe_render_condition() argument 203 struct softpipe_context *softpipe = softpipe_context( pipe ); in softpipe_render_condition() 224 softpipe->pipe.screen = screen; in softpipe_create_context() 225 softpipe->pipe.destroy = softpipe_destroy; in softpipe_create_context() 226 softpipe->pipe.priv = priv; in softpipe_create_context() [all …]
|
/external/libdrm/freedreno/ |
D | freedreno_pipe.c | 39 struct fd_pipe *pipe = NULL; in fd_pipe_new() local 46 pipe = dev->funcs->pipe_new(dev, id); in fd_pipe_new() 47 if (!pipe) { in fd_pipe_new() 52 pipe->dev = dev; in fd_pipe_new() 53 pipe->id = id; in fd_pipe_new() 55 return pipe; in fd_pipe_new() 57 if (pipe) in fd_pipe_new() 58 fd_pipe_del(pipe); in fd_pipe_new() 62 void fd_pipe_del(struct fd_pipe *pipe) in fd_pipe_del() argument 64 pipe->funcs->destroy(pipe); in fd_pipe_del() [all …]
|
/external/valgrind/coregrind/m_scheduler/ |
D | sema.c | 59 r = VG_(pipe)(sema->pipe); in ML_() 62 vg_assert(sema->pipe[0] != sema->pipe[1]); in ML_() 64 sema->pipe[0] = VG_(safe_fd)(sema->pipe[0]); in ML_() 65 sema->pipe[1] = VG_(safe_fd)(sema->pipe[1]); in ML_() 68 VG_(debugLog)(0,"zz","sema_init: %d %d\n", sema->pipe[0], in ML_() 69 sema->pipe[1]); in ML_() 70 vg_assert(sema->pipe[0] != sema->pipe[1]); in ML_() 82 res = VG_(write)(sema->pipe[1], buf, 1); in ML_() 89 vg_assert(sema->pipe[0] != sema->pipe[1]); in ML_() 91 VG_(close)(sema->pipe[0]); in ML_() [all …]
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_queryobj.c | 69 struct pipe_context *pipe = st_context(ctx)->pipe; in st_DeleteQuery() local 73 pipe->destroy_query(pipe, stq->pq); in st_DeleteQuery() 84 struct pipe_context *pipe = st_context(ctx)->pipe; in st_BeginQuery() local 113 pipe->destroy_query(pipe, stq->pq); in st_BeginQuery() 119 stq->pq = pipe->create_query(pipe, type); in st_BeginQuery() 125 pipe->begin_query(pipe, stq->pq); in st_BeginQuery() 132 struct pipe_context *pipe = st_context(ctx)->pipe; in st_EndQuery() local 138 stq->pq = pipe->create_query(pipe, PIPE_QUERY_TIMESTAMP); in st_EndQuery() 142 pipe->end_query(pipe, stq->pq); in st_EndQuery() 149 struct pipe_context *pipe = st_context(ctx)->pipe; in st_WaitQuery() local [all …]
|
/external/webrtc/webrtc/video/ |
D | full_stack.cc | 62 foreman_cif.pipe.loss_percent = 5; in TEST_F() 63 foreman_cif.pipe.queue_delay_ms = 50; in TEST_F() 73 foreman_cif.pipe.queue_length_packets = 0; in TEST_F() 74 foreman_cif.pipe.queue_delay_ms = 0; in TEST_F() 75 foreman_cif.pipe.link_capacity_kbps = 500; in TEST_F() 86 foreman_cif.pipe.queue_length_packets = 32; in TEST_F() 87 foreman_cif.pipe.queue_delay_ms = 0; in TEST_F() 88 foreman_cif.pipe.link_capacity_kbps = 500; in TEST_F() 98 foreman_cif.pipe.queue_length_packets = 0; in TEST_F() 99 foreman_cif.pipe.queue_delay_ms = 100; in TEST_F() [all …]
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
D | d3d11_context.h | 100 struct pipe_context* pipe; member 114 …GalliumD3D11DeviceContext(GalliumD3D11Screen* device, pipe_context* pipe, bool owns_pipe, unsigned… 115 …: GalliumD3D11DeviceChild<ID3D11DeviceContext>(device), pipe(pipe), owns_pipe(owns_pipe), context_… 128 …GalliumD3D10Device(pipe_screen* screen, pipe_context* pipe, bool owns_pipe, unsigned creation_flag… in GalliumD3D10Device() 129 …: GalliumD3D10ScreenImpl<threadsafe>(screen, pipe, owns_pipe, creation_flags, adapter), pipe(pipe)… in GalliumD3D10Device() 143 if(!pipe->begin_query) in init_context() 145 if(!pipe->bind_gs_state) in init_context() 150 assert(!caps.so || pipe->set_stream_output_targets); in init_context() 151 if(!pipe->set_geometry_sampler_views) in init_context() 153 if(!pipe->set_fragment_sampler_views) in init_context() [all …]
|
/external/mesa3d/src/gallium/drivers/nv30/ |
D | nv30_state.c | 37 nv30_blend_state_create(struct pipe_context *pipe, in nv30_blend_state_create() argument 40 struct nouveau_object *eng3d = nv30_context(pipe)->screen->eng3d; in nv30_blend_state_create() 48 so->pipe = *cso; in nv30_blend_state_create() 117 nv30_blend_state_bind(struct pipe_context *pipe, void *hwcso) in nv30_blend_state_bind() argument 119 struct nv30_context *nv30 = nv30_context(pipe); in nv30_blend_state_bind() 126 nv30_blend_state_delete(struct pipe_context *pipe, void *hwcso) in nv30_blend_state_delete() argument 132 nv30_rasterizer_state_create(struct pipe_context *pipe, in nv30_rasterizer_state_create() argument 140 so->pipe = *cso; in nv30_rasterizer_state_create() 194 nv30_rasterizer_state_bind(struct pipe_context *pipe, void *hwcso) in nv30_rasterizer_state_bind() argument 196 struct nv30_context *nv30 = nv30_context(pipe); in nv30_rasterizer_state_bind() [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_pstipple.c | 111 struct pipe_context *pipe; member 375 pstip->fs->pstip_fs = pstip->driver_create_fs_state(pstip->pipe, &pstip_fs); in generate_pstip_fs() 393 struct pipe_context *pipe = pstip->pipe; in pstip_update_texture() local 399 transfer = pipe_get_transfer(pipe, pstip->texture, 0, 0, in pstip_update_texture() 401 data = pipe->transfer_map(pipe, transfer); in pstip_update_texture() 423 pipe->transfer_unmap(pipe, transfer); in pstip_update_texture() 424 pipe->transfer_destroy(pipe, transfer); in pstip_update_texture() 434 struct pipe_context *pipe = pstip->pipe; in pstip_create_texture() local 435 struct pipe_screen *screen = pipe->screen; in pstip_create_texture() 456 pstip->sampler_view = pipe->create_sampler_view(pipe, in pstip_create_texture() [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_blend.c | 45 llvmpipe_create_blend_state(struct pipe_context *pipe, in llvmpipe_create_blend_state() argument 62 llvmpipe_bind_blend_state(struct pipe_context *pipe, void *blend) in llvmpipe_bind_blend_state() argument 64 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); in llvmpipe_bind_blend_state() 78 llvmpipe_delete_blend_state(struct pipe_context *pipe, void *blend) in llvmpipe_delete_blend_state() argument 85 llvmpipe_set_blend_color(struct pipe_context *pipe, in llvmpipe_set_blend_color() argument 88 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); in llvmpipe_set_blend_color() 110 llvmpipe_create_depth_stencil_state(struct pipe_context *pipe, in llvmpipe_create_depth_stencil_state() argument 133 llvmpipe_bind_depth_stencil_state(struct pipe_context *pipe, in llvmpipe_bind_depth_stencil_state() argument 136 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); in llvmpipe_bind_depth_stencil_state() 150 llvmpipe_delete_depth_stencil_state(struct pipe_context *pipe, void *depth) in llvmpipe_delete_depth_stencil_state() argument [all …]
|