Searched refs:packed_map (Results 1 – 3 of 3) sorted by relevance
1356 uint32_t *packed_map = map->ptr; in intel_miptree_map_depthstencil() local1380 packed_map[(y * map->w + x) * 2 + 0] = z; in intel_miptree_map_depthstencil()1381 packed_map[(y * map->w + x) * 2 + 1] = s; in intel_miptree_map_depthstencil()1383 packed_map[y * map->w + x] = (s << 24) | (z & 0x00ffffff); in intel_miptree_map_depthstencil()1416 uint32_t *packed_map = map->ptr; in intel_miptree_unmap_depthstencil() local1437 z_map[z_offset] = packed_map[(y * map->w + x) * 2 + 0]; in intel_miptree_unmap_depthstencil()1438 s_map[s_offset] = packed_map[(y * map->w + x) * 2 + 1]; in intel_miptree_unmap_depthstencil()1440 uint32_t packed = packed_map[y * map->w + x]; in intel_miptree_unmap_depthstencil()