[Mesa-dev] [PATCH 01/21] intel/isl: Add a isl_surf_get_image_offset_B_tile_el helper
Jason Ekstrand
jason at jlekstrand.net
Fri Feb 23 07:06:41 UTC 2018
---
src/intel/isl/isl.c | 45 ++++++++++++++++++++++++++++++++-------------
src/intel/isl/isl.h | 20 ++++++++++++++++++++
2 files changed, 52 insertions(+), 13 deletions(-)
diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c
index 1a32c02..bba7310 100644
--- a/src/intel/isl/isl.c
+++ b/src/intel/isl/isl.c
@@ -2157,20 +2157,13 @@ isl_surf_get_image_offset_B_tile_sa(const struct isl_surf *surf,
{
const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
- uint32_t total_x_offset_el, total_y_offset_el;
- isl_surf_get_image_offset_el(surf, level, logical_array_layer,
- logical_z_offset_px,
- &total_x_offset_el,
- &total_y_offset_el);
-
uint32_t x_offset_el, y_offset_el;
- isl_tiling_get_intratile_offset_el(surf->tiling, fmtl->bpb,
- surf->row_pitch,
- total_x_offset_el,
- total_y_offset_el,
- offset_B,
- &x_offset_el,
- &y_offset_el);
+ isl_surf_get_image_offset_B_tile_el(surf, level,
+ logical_array_layer,
+ logical_z_offset_px,
+ offset_B,
+ &x_offset_el,
+ &y_offset_el);
if (x_offset_sa) {
*x_offset_sa = x_offset_el * fmtl->bw;
@@ -2186,6 +2179,32 @@ isl_surf_get_image_offset_B_tile_sa(const struct isl_surf *surf,
}
void
+isl_surf_get_image_offset_B_tile_el(const struct isl_surf *surf,
+ uint32_t level,
+ uint32_t logical_array_layer,
+ uint32_t logical_z_offset_px,
+ uint32_t *offset_B,
+ uint32_t *x_offset_el,
+ uint32_t *y_offset_el)
+{
+ const struct isl_format_layout *fmtl = isl_format_get_layout(surf->format);
+
+ uint32_t total_x_offset_el, total_y_offset_el;
+ isl_surf_get_image_offset_el(surf, level, logical_array_layer,
+ logical_z_offset_px,
+ &total_x_offset_el,
+ &total_y_offset_el);
+
+ isl_tiling_get_intratile_offset_el(surf->tiling, fmtl->bpb,
+ surf->row_pitch,
+ total_x_offset_el,
+ total_y_offset_el,
+ offset_B,
+ x_offset_el,
+ y_offset_el);
+}
+
+void
isl_surf_get_image_surf(const struct isl_device *dev,
const struct isl_surf *surf,
uint32_t level,
diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h
index 209769a..142a92c 100644
--- a/src/intel/isl/isl.h
+++ b/src/intel/isl/isl.h
@@ -1904,6 +1904,26 @@ isl_surf_get_image_offset_B_tile_sa(const struct isl_surf *surf,
uint32_t *y_offset_sa);
/**
+ * Calculate the offset, in bytes and intratile surface elements, to a
+ * subimage in the surface.
+ *
+ * This is equivalent to calling isl_surf_get_image_offset_el, passing the
+ * result to isl_tiling_get_intratile_offset_el.
+ *
+ * @invariant level < surface levels
+ * @invariant logical_array_layer < logical array length of surface
+ * @invariant logical_z_offset_px < logical depth of surface at level
+ */
+void
+isl_surf_get_image_offset_B_tile_el(const struct isl_surf *surf,
+ uint32_t level,
+ uint32_t logical_array_layer,
+ uint32_t logical_z_offset_px,
+ uint32_t *offset_B,
+ uint32_t *x_offset_el,
+ uint32_t *y_offset_el);
+
+/**
* Create an isl_surf that represents a particular subimage in the surface.
*
* The newly created surface will have a single miplevel and array slice. The
--
2.5.0.400.gff86faf
More information about the mesa-dev
mailing list