Home
last modified time | relevance | path

Searched refs:cpu_storage (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/util/
Du_threaded_context.h341 void *cpu_storage; member
628 if (tres->cpu_storage) { in tc_buffer_disable_cpu_storage()
629 align_free(tres->cpu_storage); in tc_buffer_disable_cpu_storage()
630 tres->cpu_storage = NULL; in tc_buffer_disable_cpu_storage()
Du_threaded_context.c714 tres->cpu_storage = NULL; in threaded_resource_init()
743 align_free(tres->cpu_storage); in threaded_resource_deinit()
2233 if (!tres->cpu_storage) { in tc_buffer_map()
2234 tres->cpu_storage = align_malloc(resource->width0, tc->map_buffer_alignment); in tc_buffer_map()
2236 if (tres->cpu_storage && tres->valid_buffer_range.end) { in tc_buffer_map()
2249 memcpy(&((uint8_t*)tres->cpu_storage)[tres->valid_buffer_range.start], in tc_buffer_map()
2258 if (tres->cpu_storage) { in tc_buffer_map()
2267 return (uint8_t*)tres->cpu_storage + box->x; in tc_buffer_map()
2525 assert(tres->cpu_storage); in tc_buffer_unmap()
2527 if (tres->cpu_storage) { in tc_buffer_unmap()
[all …]
/third_party/mesa3d/docs/relnotes/
D22.0.2.rst255 - gallium/u_threaded: late alloc cpu_storage
256 - gallium/tc: warn if an app is incompatible with cpu_storage
D22.2.1.rst185 - tc: do a GPU->CPU copy to initialize cpu_storage
D22.1.0.rst2974 - gallium/u_threaded: late alloc cpu_storage
2975 - radeonsi: enable tc cpu_storage by default
2976 - gallium/tc: warn if an app is incompatible with cpu_storage
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_buffer.c162 !res->b.cpu_storage && /* TODO: The CPU storage breaks this. */ in si_init_resource_fields()