Searched refs:packed_map (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dintel_mipmap_tree.c3489 uint32_t *packed_map = map->ptr; local in function:intel_miptree_unmap_depthstencil
3511 z_map[z_offset] = packed_map[(y * map->w + x) * 2 + 0];
3512 s_map[s_offset] = packed_map[(y * map->w + x) * 2 + 1];
3514 uint32_t packed = packed_map[y * map->w + x];
3563 uint32_t *packed_map = map->ptr; local in function:intel_miptree_map_depthstencil
3588 packed_map[(y * map->w + x) * 2 + 0] = z;
3589 packed_map[(y * map->w + x) * 2 + 1] = s;
3591 packed_map[y * map->w + x] = (s << 24) | (z & 0x00ffffff);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_mipmap_tree.c2847 uint32_t *packed_map = map->ptr; local in function:brw_miptree_unmap_depthstencil
2869 z_map[z_offset] = packed_map[(y * map->w + x) * 2 + 0];
2870 s_map[s_offset] = packed_map[(y * map->w + x) * 2 + 1];
2872 uint32_t packed = packed_map[y * map->w + x];
2921 uint32_t *packed_map = map->ptr; local in function:brw_miptree_map_depthstencil
2946 packed_map[(y * map->w + x) * 2 + 0] = z;
2947 packed_map[(y * map->w + x) * 2 + 1] = s;
2949 packed_map[y * map->w + x] = (s << 24) | (z & 0x00ffffff);

Completed in 10 milliseconds