diff options
author | Samuel Pitoiset <[email protected]> | 2017-11-30 14:32:57 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-11-30 21:37:58 +0100 |
commit | 4eab78b03cc3695d78e21fdb3d760975e0ae1fda (patch) | |
tree | 93cf357ccc0c05f2fde82f066c6293b4caf74758 /src/amd/vulkan/radv_device.c | |
parent | 7776dc32eb10c8cf4ec9720e1c8a3bd8fd3a7d1d (diff) |
radv: do not store gfx9_epitch in radv_color_buffer_info
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 8e5ae0bc46e..336cb125a09 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -3077,9 +3077,6 @@ radv_initialise_color_surface(struct radv_device *device, cb->cb_color_attrib2 = S_028C68_MIP0_WIDTH(iview->extent.width - 1) | S_028C68_MIP0_HEIGHT(iview->extent.height - 1) | S_028C68_MAX_MIP(iview->image->info.levels - 1); - - cb->gfx9_epitch = S_0287A0_EPITCH(iview->image->surface.u.gfx9.surf.epitch); - } } |