radv/winsys: remove unused fields in radv_amdgpu_cs_request
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Fri, 5 Feb 2021 14:21:51 +0000 (15:21 +0100)
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>
Mon, 8 Feb 2021 07:45:47 +0000 (08:45 +0100)
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8859>

src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c

index dd2cd9e..1ae78aa 100644 (file)
@@ -94,9 +94,6 @@ static int ring_to_hw_ip(enum ring_type ring)
 }
 
 struct radv_amdgpu_cs_request {
-       /** Specify flags with additional information */
-       uint64_t flags;
-
        /** Specify HW IP block type to which to send the IB. */
        unsigned ip_type;
 
@@ -115,18 +112,6 @@ struct radv_amdgpu_cs_request {
        struct drm_amdgpu_bo_list_entry *handles;
        uint32_t num_handles;
 
-       /**
-        * Number of dependencies this Command submission needs to
-        * wait for before starting execution.
-        */
-       uint32_t number_of_dependencies;
-
-       /**
-        * Array of dependencies which need to be met before
-        * execution can start.
-        */
-       struct amdgpu_cs_fence *dependencies;
-
        /** Number of IBs to submit in the field ibs. */
        uint32_t number_of_ibs;