diff options
author | Jason Ekstrand <[email protected]> | 2016-06-22 16:37:54 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-08-17 14:46:22 -0700 |
commit | 573f6ffd04be3380721dcca6d607b3490b7a118c (patch) | |
tree | 246f64971e15139a314fcd1148200f07d67f9cbf /src/intel/isl/isl.h | |
parent | 5de29aeef00f6adf4b9ef278415d8f753283ef03 (diff) |
isl: Fix the parameter names for get_intratile_offset
It's been in elements for a while but, for whatever reason, the parameter
names in the header file never got updated.
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/isl/isl.h')
-rw-r--r-- | src/intel/isl/isl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h index 4caf0e8324c..10f79ee81f1 100644 --- a/src/intel/isl/isl.h +++ b/src/intel/isl/isl.h @@ -1355,11 +1355,11 @@ isl_tiling_get_intratile_offset_el(const struct isl_device *dev, enum isl_tiling tiling, uint8_t bs, uint32_t row_pitch, - uint32_t total_x_offset_B, - uint32_t total_y_offset_rows, + uint32_t total_x_offset_el, + uint32_t total_y_offset_el, uint32_t *base_address_offset, - uint32_t *x_offset_B, - uint32_t *y_offset_rows); + uint32_t *x_offset_el, + uint32_t *y_offset_el); /** * @brief Get value of 3DSTATE_DEPTH_BUFFER.SurfaceFormat |