From 41e894e11d477bcd920049b5dfc0f02d95accc5f Mon Sep 17 00:00:00 2001 From: Boris Zanin Date: Mon, 10 Apr 2017 10:32:24 +0200 Subject: [PATCH] Build fix (uint32_t used instead of deUint32) It looks like uint32_t is not used within the CTS. Replacing it with deUint32 allows build to pass. Components: Vulkan VK-GL-CTS issues: 107, 108, 109 Components: Vulkan Change-Id: I25355801c273cf34c6db7ee24f876cfc3b6932d0 --- external/vulkancts/modules/vulkan/api/vktApiExternalMemoryTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/vulkancts/modules/vulkan/api/vktApiExternalMemoryTests.cpp b/external/vulkancts/modules/vulkan/api/vktApiExternalMemoryTests.cpp index 5c07f14..382fecc 100644 --- a/external/vulkancts/modules/vulkan/api/vktApiExternalMemoryTests.cpp +++ b/external/vulkancts/modules/vulkan/api/vktApiExternalMemoryTests.cpp @@ -100,7 +100,7 @@ std::vector genTestData (deUint32 seed, size_t size) return data; } -uint32_t chooseQueueFamilyIndex (const vk::InstanceInterface& vki, +deUint32 chooseQueueFamilyIndex (const vk::InstanceInterface& vki, vk::VkPhysicalDevice device, vk::VkQueueFlags requireFlags) { -- 2.7.4