37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
|
From bd4380c63c3b8b8b5f60dc840809dbe96a222fd7 Mon Sep 17 00:00:00 2001
|
||
|
From: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
||
|
Date: Tue, 21 Jan 2020 11:49:55 +0100
|
||
|
Subject: [PATCH] radv: Remove syncobj_handle variable in header.
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
I strongly suspect it was supposed to be a typedef. However, used
|
||
|
nowhere, we should remove it.
|
||
|
|
||
|
Fixes: eaa56eab6da "radv: initial support for shared semaphores (v2)"
|
||
|
Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2385
|
||
|
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
|
||
|
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
|
||
|
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3479>
|
||
|
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3479>
|
||
|
---
|
||
|
src/amd/vulkan/radv_radeon_winsys.h | 1 -
|
||
|
1 file changed, 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/amd/vulkan/radv_radeon_winsys.h b/src/amd/vulkan/radv_radeon_winsys.h
|
||
|
index c8790917bcc..5c7b1ab5118 100644
|
||
|
--- a/src/amd/vulkan/radv_radeon_winsys.h
|
||
|
+++ b/src/amd/vulkan/radv_radeon_winsys.h
|
||
|
@@ -156,7 +156,6 @@ struct radeon_bo_metadata {
|
||
|
uint32_t metadata[64];
|
||
|
};
|
||
|
|
||
|
-uint32_t syncobj_handle;
|
||
|
struct radeon_winsys_fence;
|
||
|
|
||
|
struct radeon_winsys_bo {
|
||
|
--
|
||
|
2.16.4
|
||
|
|