Searched refs:u_upload_mgr (Results 1 – 25 of 31) sorted by relevance
12
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_upload_mgr.h | 54 struct u_upload_mgr * 62 struct u_upload_mgr * 69 struct u_upload_mgr * 70 u_upload_clone(struct pipe_context *pipe, struct u_upload_mgr *upload); 74 u_upload_enable_flush_explicit(struct u_upload_mgr *upload); 78 u_upload_disable_persistent(struct u_upload_mgr *upload); 83 void u_upload_destroy( struct u_upload_mgr *upload ); 95 void u_upload_unmap( struct u_upload_mgr *upload ); 108 void u_upload_alloc(struct u_upload_mgr *upload, 123 void u_upload_data(struct u_upload_mgr *upload,
|
D | u_upload_mgr.c | 41 struct u_upload_mgr { struct 61 struct u_upload_mgr * argument 65 struct u_upload_mgr *upload = CALLOC_STRUCT(u_upload_mgr); in u_upload_create() 94 struct u_upload_mgr * 104 struct u_upload_mgr * 105 u_upload_clone(struct pipe_context *pipe, struct u_upload_mgr *upload) in u_upload_clone() 107 struct u_upload_mgr *result = u_upload_create(pipe, upload->default_size, in u_upload_clone() 120 u_upload_enable_flush_explicit(struct u_upload_mgr *upload) in u_upload_enable_flush_explicit() 128 u_upload_disable_persistent(struct u_upload_mgr *upload) in u_upload_disable_persistent() 136 upload_unmap_internal(struct u_upload_mgr *upload, boolean destroying) in upload_unmap_internal() [all …]
|
/external/mesa3d/src/gallium/drivers/virgl/ |
D | virgl_context.h | 36 struct u_upload_mgr; 84 struct u_upload_mgr *uploader;
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_draw_private.h | 38 struct u_upload_mgr; 164 struct u_upload_mgr *upload_ib;
|
D | svga_draw.h | 38 struct u_upload_mgr;
|
D | svga_context.h | 476 struct u_upload_mgr *const0_upload; 477 struct u_upload_mgr *tex_upload;
|
/external/mesa3d/src/gallium/drivers/iris/ |
D | iris_context.h | 559 struct u_upload_mgr *query_buffer_uploader; 615 struct u_upload_mgr *uploader; 742 struct u_upload_mgr *surface_uploader; 743 struct u_upload_mgr *dynamic_uploader;
|
D | iris_batch.h | 112 struct u_upload_mgr *uploader;
|
D | iris_blorp.c | 50 struct u_upload_mgr *uploader, in stream_state()
|
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
D | fd3_context.h | 47 struct u_upload_mgr *border_color_uploader;
|
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
D | fd4_context.h | 48 struct u_upload_mgr *border_color_uploader;
|
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_context.h | 51 struct u_upload_mgr *border_color_uploader;
|
/external/mesa3d/src/gallium/include/pipe/ |
D | p_context.h | 80 struct u_upload_mgr; 101 struct u_upload_mgr *stream_uploader; /* everything but shader constants */ 102 struct u_upload_mgr *const_uploader; /* shader constants only */
|
/external/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_context.h | 70 struct u_upload_mgr *border_color_uploader;
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_context.h | 40 struct u_upload_mgr; 596 struct u_upload_mgr *uploader;
|
/external/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_context.h | 480 struct u_upload_mgr *uploader; 485 struct u_upload_mgr *state_uploader;
|
/external/mesa3d/src/gallium/drivers/lima/ |
D | lima_context.h | 182 struct u_upload_mgr *uploader;
|
/external/mesa3d/src/gallium/drivers/panfrost/ |
D | pan_context.h | 110 struct u_upload_mgr *state_uploader;
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_context.h | 56 struct u_upload_mgr;
|
D | st_atom_array.c | 280 struct u_upload_mgr *uploader = st->can_bind_const_buffer_as_vertex ? in st_setup_current()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_context.h | 356 struct u_upload_mgr *uploader;
|
/external/mesa3d/src/gallium/frontends/nine/ |
D | device9.h | 40 struct u_upload_mgr; 145 struct u_upload_mgr *vertex_uploader;
|
/external/mesa3d/src/gallium/auxiliary/ |
D | Makefile.sources | 308 util/u_upload_mgr.c \ 309 util/u_upload_mgr.h \
|
D | meson.build | 324 'util/u_upload_mgr.c', 325 'util/u_upload_mgr.h',
|
/external/mesa3d/docs/relnotes/ |
D | 9.0.3.rst | 195 - gallium/u_upload_mgr: fix a serious memory leak
|
12