Searched refs:readpix_cache (Results 1 – 3 of 3) sorted by relevance
357 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 …]
61 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()
306 } readpix_cache; member