Home
last modified time | relevance | path

Searched refs:const_uploader (Results 1 – 25 of 51) sorted by relevance

123

/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_context.c116 u_upload_destroy(svga->pipe.const_uploader); in svga_destroy()
166 svga->pipe.const_uploader = u_upload_create(&svga->pipe, 128 * 1024, in svga_context_create()
169 if (!svga->pipe.const_uploader) in svga_context_create()
172 u_upload_disable_persistent(svga->pipe.const_uploader); in svga_context_create()
373 if (svga->pipe.const_uploader) in svga_context_create()
374 u_upload_destroy(svga->pipe.const_uploader); in svga_context_create()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_context.c226 if (ctx->const_uploader) in iris_destroy_context()
227 u_upload_destroy(ctx->const_uploader); in iris_destroy_context()
307 ctx->const_uploader = u_upload_create(ctx, 1024 * 1024, in iris_create_context()
311 if (!ctx->const_uploader) { in iris_create_context()
Diris_draw.c152 u_upload_data(ice->ctx.const_uploader, 0, in iris_update_draw_parameters()
170 u_upload_data(ice->ctx.const_uploader, 0, in iris_update_draw_parameters()
Diris_blorp.c203 void *map = stream_state(batch, ice->ctx.const_uploader, size, 64, in blorp_alloc_vertex_buffer()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_atom_constbuf.c133 u_upload_alloc(pipe->const_uploader, 0, paramBytes + 12, in st_upload_constants()
146 u_upload_unmap(pipe->const_uploader); in st_upload_constants()
Dst_atom_array.cpp256 st->pipe->const_uploader : in st_setup_current()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_pipe.c328 if (sctx->b.const_uploader && sctx->b.const_uploader != sctx->b.stream_uploader) in si_destroy_context()
329 u_upload_destroy(sctx->b.const_uploader); in si_destroy_context()
563 sctx->b.const_uploader = sctx->b.stream_uploader; in si_create_context()
565 sctx->b.const_uploader = in si_create_context()
568 if (!sctx->b.const_uploader) { in si_create_context()
Dsi_compute.c685 u_upload_data(sctx->b.const_uploader, 0, sizeof(dispatch), 256, &dispatch, &dispatch_offset, in si_setup_user_sgprs_co_v2()
733 u_upload_alloc(sctx->b.const_uploader, 0, program->input_size, in si_upload_compute_input()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_context.c199 vc4->base.const_uploader = vc4->uploader; in vc4_context_create()
/third_party/mesa3d/src/gallium/auxiliary/vl/
Dvl_bicubic_filter.c433 u_upload_alloc(filter->pipe->const_uploader, 0, 2 * sizeof(float), 256, in vl_bicubic_filter_render()
441 u_upload_unmap(filter->pipe->const_uploader); in vl_bicubic_filter_render()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_pipe_common.c630 rctx->b.const_uploader = u_upload_create(&rctx->b, 128 * 1024, in r600_common_context_init()
632 if (!rctx->b.const_uploader) in r600_common_context_init()
660 if (rctx->b.const_uploader) in r600_common_context_cleanup()
661 u_upload_destroy(rctx->b.const_uploader); in r600_common_context_cleanup()
/third_party/mesa3d/src/gallium/drivers/i915/
Di915_context.c193 i915->base.const_uploader = i915->base.stream_uploader; in i915_create_context()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_context.c216 nv30->base.pipe.const_uploader = nv30->base.pipe.stream_uploader; in nv30_context_create()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_context.c285 llvmpipe->pipe.const_uploader = llvmpipe->pipe.stream_uploader; in llvmpipe_create_context()
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_context.c242 ctx->base.const_uploader = ctx->uploader; in lima_context_create()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_context.c264 ctx->const_uploader = ctx->stream_uploader; in crocus_create_context()
Dcrocus_draw.c466 u_upload_data(ice->ctx.const_uploader, 0, sizeof(grid->grid), 4, in crocus_update_grid_size_resource()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.c1239 u_upload_data(tc->base.const_uploader, 0, cb->buffer_size, in tc_set_constant_buffer()
1241 u_upload_unmap(tc->base.const_uploader); in tc_set_constant_buffer()
4332 if (tc->base.const_uploader && in tc_destroy()
4333 tc->base.stream_uploader != tc->base.const_uploader) in tc_destroy()
4334 u_upload_destroy(tc->base.const_uploader); in tc_destroy()
4438 if (pipe->stream_uploader == pipe->const_uploader) in threaded_context_create()
4439 tc->base.const_uploader = tc->base.stream_uploader; in threaded_context_create()
4441 tc->base.const_uploader = u_upload_clone(&tc->base, pipe->const_uploader); in threaded_context_create()
4443 if (!tc->base.stream_uploader || !tc->base.const_uploader) in threaded_context_create()
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_context.c386 v3d->base.const_uploader = v3d->uploader; in v3d_context_create()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_context.c273 softpipe->pipe.const_uploader = softpipe->pipe.stream_uploader; in softpipe_create_context()
/third_party/mesa3d/docs/relnotes/
D19.1.3.rst135 - radeonsi: don't set READ_ONLY for const_uploader to fix bindless
D22.0.3.rst172 - r300: set PIPE_BIND_CONSTANT_BUFFER for const_uploader
/third_party/mesa3d/src/gallium/include/pipe/
Dp_context.h105 struct u_upload_mgr *const_uploader; /* shader constants only */ member
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
Ddd_context.c859 dctx->base.const_uploader = pipe->const_uploader; in dd_context_create()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_context.c340 pipe->const_uploader = pipe->stream_uploader; in nv50_create()

123