Home | History | Annotate | Download | only in softpipe

Lines Matching defs:tile

29  * Texture tile caching.
61 tc->last_tile = &tc->entries[0]; /* any tile */
185 * Flush the tile cache: write all dirty tiles back to the transfer.
207 * cached texture tile.
231 struct softpipe_tex_cached_tile *tile;
234 tile = tc->entries + tex_cache_pos( addr );
236 if (addr.value != tile->addr.value) {
245 " tile %u: x=%d y=%d z=%d face=%d level=%d\n",
247 pos, tile->addr.bits.x, tile->addr.bits.y, tile->z, tile->face, tile->level);
292 /* Get tile from the transfer (view into texture), explicitly passing
303 (unsigned *) tile->data.colorui);
312 (int *) tile->data.colori);
321 (float *) tile->data.color);
323 tile->addr = addr;
326 tc->last_tile = tile;
327 return tile;