diff options
author | Jonathan Marek <[email protected]> | 2020-04-17 12:35:53 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-24 17:42:01 +0000 |
commit | f81e56c9a06c06780139bc4a19befea73aa10144 (patch) | |
tree | 1d0482e4911eb945a424df5ac727be876d84d14d /src/freedreno/vulkan/tu_device.c | |
parent | c68313868921f8d7125e46091cd92dbe00f845ec (diff) |
turnip: remove unused RB_UNKNOWN_8E04_blit
New blit code doesn't change this value, and different values seem to be
related to the driver version and not the GPU version.
Signed-off-by: Jonathan Marek <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4608>
Diffstat (limited to 'src/freedreno/vulkan/tu_device.c')
-rw-r--r-- | src/freedreno/vulkan/tu_device.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index 91e1a846daf..ea1ee8ee8aa 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -265,7 +265,6 @@ tu_physical_device_init(struct tu_physical_device *device, switch (device->gpu_id) { case 618: - device->magic.RB_UNKNOWN_8E04_blit = 0x00100000; device->ccu_offset_gmem = 0x7c000; /* 0x7e000 in some cases? */ device->ccu_offset_bypass = 0x10000; device->magic.PC_UNKNOWN_9805 = 0x0; @@ -273,7 +272,6 @@ tu_physical_device_init(struct tu_physical_device *device, break; case 630: case 640: - device->magic.RB_UNKNOWN_8E04_blit = 0x01000000; device->ccu_offset_gmem = 0xf8000; device->ccu_offset_bypass = 0x20000; device->magic.PC_UNKNOWN_9805 = 0x1; |