Lines Matching refs:deviceInfo
110 VkDeviceCreateInfo deviceInfo; in createTestDevice() local
138 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in createTestDevice()
202 deMemset(&deviceInfo, 0xcd, sizeof(deviceInfo)); in createTestDevice()
203 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in createTestDevice()
204 deviceInfo.pNext = pNext; in createTestDevice()
205 deviceInfo.flags = (VkDeviceCreateFlags)0u; in createTestDevice()
206 deviceInfo.queueCreateInfoCount = 1u; in createTestDevice()
207 deviceInfo.pQueueCreateInfos = &queueInfo; in createTestDevice()
208 deviceInfo.enabledExtensionCount = static_cast<deUint32>(deviceExtensions.size()); in createTestDevice()
209 deviceInfo.ppEnabledExtensionNames = deviceExtensions.empty() ? DE_NULL : &deviceExtensions[0]; in createTestDevice()
210 deviceInfo.enabledLayerCount = 0u; in createTestDevice()
211 deviceInfo.ppEnabledLayerNames = DE_NULL; in createTestDevice()
212 deviceInfo.pEnabledFeatures = !useFeatures2 ? &physicalDeviceFeatures : DE_NULL; in createTestDevice()
216 return createCustomDevice(validationEnabled, vkp, instance, vki, physicalDevice, &deviceInfo); in createTestDevice()