[Mesa-dev] [PATCH v2 5/5] i965/miptree: Don't gtt map from map_depthstencil
Scott D Phillips
scott.d.phillips at intel.com
Tue Apr 3 20:05:45 UTC 2018
Instead of gtt mapping, call out to other map functions (map_map
or map_tiled_memcpy) for the depth surface. Removes a place where
gtt mapping is used.
v2: add level, slice to debug print (Nanley)
---
src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 52 ++++++++++++++++-----------
1 file changed, 32 insertions(+), 20 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
index d8a6fc692ab..1d3b8a51801 100644
--- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
@@ -3488,16 +3488,21 @@ intel_miptree_map_depthstencil(struct brw_context *brw,
* temporary buffer back out.
*/
if (!(map->mode & GL_MAP_INVALIDATE_RANGE_BIT)) {
+ struct intel_miptree_map z_mt_map = {
+ .mode = map->mode & ~GL_MAP_WRITE_BIT, .x = map->x, .y = map->y,
+ .w = map->w, .h = map->h,
+ };
+ if (z_mt->surf.tiling == ISL_TILING_LINEAR)
+ intel_miptree_map_map(brw, z_mt, &z_mt_map, level, slice);
+ else
+ intel_miptree_map_tiled_memcpy(brw, z_mt, &z_mt_map, level, slice);
+ uint32_t *z_map = z_mt_map.ptr;
uint32_t *packed_map = map->ptr;
uint8_t *s_map = intel_miptree_map_raw(brw, s_mt, GL_MAP_READ_BIT);
- uint32_t *z_map = intel_miptree_map_raw(brw, z_mt, GL_MAP_READ_BIT);
unsigned int s_image_x, s_image_y;
- unsigned int z_image_x, z_image_y;
intel_miptree_get_image_offset(s_mt, level, slice,
&s_image_x, &s_image_y);
- intel_miptree_get_image_offset(z_mt, level, slice,
- &z_image_x, &z_image_y);
for (uint32_t y = 0; y < map->h; y++) {
for (uint32_t x = 0; x < map->w; x++) {
@@ -3506,9 +3511,7 @@ intel_miptree_map_depthstencil(struct brw_context *brw,
map_x + s_image_x,
map_y + s_image_y,
brw->has_swizzling);
- ptrdiff_t z_offset = ((map_y + z_image_y) *
- (z_mt->surf.row_pitch / 4) +
- (map_x + z_image_x));
+ ptrdiff_t z_offset = y * (z_mt_map.stride / 4) + x;
uint8_t s = s_map[s_offset];
uint32_t z = z_map[z_offset];
@@ -3522,12 +3525,15 @@ intel_miptree_map_depthstencil(struct brw_context *brw,
}
intel_miptree_unmap_raw(s_mt);
- intel_miptree_unmap_raw(z_mt);
+ if (z_mt->surf.tiling == ISL_TILING_LINEAR)
+ intel_miptree_unmap_map(z_mt);
+ else
+ intel_miptree_unmap_tiled_memcpy(brw, z_mt, &z_mt_map, level, slice);
- DBG("%s: %d,%d %dx%d from z mt %p %d,%d, s mt %p %d,%d = %p/%d\n",
+ DBG("%s: %d,%d %dx%d from z mt %p (%d,%d) @ (level:%d, slice:%d), s mt %p %d,%d = %p/%d\n",
__func__,
map->x, map->y, map->w, map->h,
- z_mt, map->x + z_image_x, map->y + z_image_y,
+ z_mt, map->x, map->y, level, slice,
s_mt, map->x + s_image_x, map->y + s_image_y,
map->ptr, map->stride);
} else {
@@ -3549,16 +3555,21 @@ intel_miptree_unmap_depthstencil(struct brw_context *brw,
bool map_z32f_x24s8 = mt->format == MESA_FORMAT_Z_FLOAT32;
if (map->mode & GL_MAP_WRITE_BIT) {
+ struct intel_miptree_map z_mt_map = {
+ .mode = map->mode | GL_MAP_INVALIDATE_RANGE_BIT, .x = map->x,
+ .y = map->y, .w = map->w, .h = map->h,
+ };
+ if (z_mt->surf.tiling == ISL_TILING_LINEAR)
+ intel_miptree_map_map(brw, z_mt, &z_mt_map, level, slice);
+ else
+ intel_miptree_map_tiled_memcpy(brw, z_mt, &z_mt_map, level, slice);
+ uint32_t *z_map = z_mt_map.ptr;
uint32_t *packed_map = map->ptr;
uint8_t *s_map = intel_miptree_map_raw(brw, s_mt, GL_MAP_WRITE_BIT);
- uint32_t *z_map = intel_miptree_map_raw(brw, z_mt, GL_MAP_WRITE_BIT);
unsigned int s_image_x, s_image_y;
- unsigned int z_image_x, z_image_y;
intel_miptree_get_image_offset(s_mt, level, slice,
&s_image_x, &s_image_y);
- intel_miptree_get_image_offset(z_mt, level, slice,
- &z_image_x, &z_image_y);
for (uint32_t y = 0; y < map->h; y++) {
for (uint32_t x = 0; x < map->w; x++) {
@@ -3566,9 +3577,7 @@ intel_miptree_unmap_depthstencil(struct brw_context *brw,
x + s_image_x + map->x,
y + s_image_y + map->y,
brw->has_swizzling);
- ptrdiff_t z_offset = ((y + z_image_y + map->y) *
- (z_mt->surf.row_pitch / 4) +
- (x + z_image_x + map->x));
+ ptrdiff_t z_offset = y * (z_mt_map.stride / 4) + x;
if (map_z32f_x24s8) {
z_map[z_offset] = packed_map[(y * map->w + x) * 2 + 0];
@@ -3582,13 +3591,16 @@ intel_miptree_unmap_depthstencil(struct brw_context *brw,
}
intel_miptree_unmap_raw(s_mt);
- intel_miptree_unmap_raw(z_mt);
+ if (z_mt->surf.tiling == ISL_TILING_LINEAR)
+ intel_miptree_unmap_map(z_mt);
+ else
+ intel_miptree_unmap_tiled_memcpy(brw, z_mt, &z_mt_map, level, slice);
- DBG("%s: %d,%d %dx%d from z mt %p (%s) %d,%d, s mt %p %d,%d = %p/%d\n",
+ DBG("%s: %d,%d %dx%d from z mt %p (%s) (%d,%d) @ (level:%d, slice:%d), s mt %p %d,%d = %p/%d\n",
__func__,
map->x, map->y, map->w, map->h,
z_mt, _mesa_get_format_name(z_mt->format),
- map->x + z_image_x, map->y + z_image_y,
+ map->x, map->y, level, slice,
s_mt, map->x + s_image_x, map->y + s_image_y,
map->ptr, map->stride);
}
--
2.14.3
More information about the mesa-dev
mailing list