diff options
author | Vinson Lee <[email protected]> | 2019-05-30 14:47:37 -0700 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2019-06-05 09:00:53 +0000 |
commit | 2a45ddd42d8a3f0788f789c0341c113772660008 (patch) | |
tree | d598011ae6f8e92ca462564721d03a8af60a9501 | |
parent | 96fbd54398b7cff91bd61d6dd874fd3b2fd54c1c (diff) |
freedreno: Fix GCC build error.
../src/freedreno/vulkan/tu_device.c:900:4: error: initializer element is not constant
.minImageTransferGranularity = (VkExtent3D) { 1, 1, 1 },
^
Suggested-by: Kristian Høgsberg <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110698
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
(cherry picked from commit d4e70be7396b5330fca5b5ece2327a3e1c42b6e7)
-rw-r--r-- | src/freedreno/vulkan/tu_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index aae72c7a843..b2cf3fe7168 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -897,7 +897,7 @@ static const VkQueueFamilyProperties tu_queue_family_properties = { VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT, .queueCount = 1, .timestampValidBits = 64, - .minImageTransferGranularity = (VkExtent3D) { 1, 1, 1 }, + .minImageTransferGranularity = { 1, 1, 1 }, }; void |