Searched refs:readpix_cache (Results 1 – 3 of 3) sorted by relevance
356 if (st->readpix_cache.src != src || in try_cached_readpixels()357 st->readpix_cache.dst_format != dst_format || in try_cached_readpixels()358 st->readpix_cache.level != rb->surface->u.tex.level || in try_cached_readpixels()359 st->readpix_cache.layer != rb->surface->u.tex.first_layer) { in try_cached_readpixels()360 pipe_resource_reference(&st->readpix_cache.src, src); in try_cached_readpixels()361 pipe_resource_reference(&st->readpix_cache.cache, NULL); in try_cached_readpixels()362 st->readpix_cache.dst_format = dst_format; in try_cached_readpixels()363 st->readpix_cache.level = rb->surface->u.tex.level; in try_cached_readpixels()364 st->readpix_cache.layer = rb->surface->u.tex.first_layer; in try_cached_readpixels()365 st->readpix_cache.hits = 0; in try_cached_readpixels()[all …]
62 if (unlikely(st->readpix_cache.src)) { in st_invalidate_readpix_cache()63 pipe_resource_reference(&st->readpix_cache.src, NULL); in st_invalidate_readpix_cache()64 pipe_resource_reference(&st->readpix_cache.cache, NULL); in st_invalidate_readpix_cache()
313 } readpix_cache; member