diff options
author | Nicolai Hähnle <[email protected]> | 2017-05-10 22:41:36 +0200 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-05 10:44:05 +1000 |
commit | 543de22f4b2bfc6e8135ed41978c31768eadfd51 (patch) | |
tree | 66d5ed4dfb38d6f205302682ceb270f708e2027b /src/amd/vulkan/radv_radeon_winsys.h | |
parent | 8417c21d0a2bc691308b61672a31737150edde3c (diff) |
radv: rename radeon_surf::bo_{size,alignment} to surf_{size,alignment}
To match radeonsi / ac_surface.
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_radeon_winsys.h')
-rw-r--r-- | src/amd/vulkan/radv_radeon_winsys.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_radeon_winsys.h b/src/amd/vulkan/radv_radeon_winsys.h index 660bea58255..1d68629a247 100644 --- a/src/amd/vulkan/radv_radeon_winsys.h +++ b/src/amd/vulkan/radv_radeon_winsys.h @@ -188,8 +188,6 @@ struct radeon_surf { * they will be treated as hints (e.g. bankw, bankh) and might be * changed by the calculator. */ - uint64_t bo_size; - uint64_t bo_alignment; /* This applies to EG and later. */ uint32_t bankw; uint32_t bankh; @@ -214,6 +212,9 @@ struct radeon_surf { bool depth_adjusted; bool stencil_adjusted; + uint64_t surf_size; + uint64_t surf_alignment; + uint64_t dcc_size; uint64_t dcc_alignment; |