Home
last modified time | relevance | path

Searched refs:readpix_cache (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_readpixels.c357 if (st->readpix_cache.src != src || in try_cached_readpixels()
358 st->readpix_cache.dst_format != dst_format || in try_cached_readpixels()
359 st->readpix_cache.level != rb->surface->u.tex.level || in try_cached_readpixels()
360 st->readpix_cache.layer != rb->surface->u.tex.first_layer) { in try_cached_readpixels()
361 pipe_resource_reference(&st->readpix_cache.src, src); in try_cached_readpixels()
362 pipe_resource_reference(&st->readpix_cache.cache, NULL); in try_cached_readpixels()
363 st->readpix_cache.dst_format = dst_format; in try_cached_readpixels()
364 st->readpix_cache.level = rb->surface->u.tex.level; in try_cached_readpixels()
365 st->readpix_cache.layer = rb->surface->u.tex.first_layer; in try_cached_readpixels()
366 st->readpix_cache.hits = 0; in try_cached_readpixels()
[all …]
Dst_util.h61 if (unlikely(st->readpix_cache.src)) { in st_invalidate_readpix_cache()
62 pipe_resource_reference(&st->readpix_cache.src, NULL); in st_invalidate_readpix_cache()
63 pipe_resource_reference(&st->readpix_cache.cache, NULL); in st_invalidate_readpix_cache()
Dst_context.h306 } readpix_cache; member