• Home
  • Raw
  • Download

Lines Matching full:properties

241         VkPhysicalDeviceProperties &properties = properties2.properties;  in GetSystemInfoVulkanWithICD()  local
242 pfnGetPhysicalDeviceProperties(physicalDevices[i], &properties); in GetSystemInfoVulkanWithICD()
246 if (properties.apiVersion >= VK_API_VERSION_1_1) in GetSystemInfoVulkanWithICD()
253 gpu.vendorId = properties.vendorID; in GetSystemInfoVulkanWithICD()
254 gpu.deviceId = properties.deviceID; in GetSystemInfoVulkanWithICD()
255 // Need to parse/re-format properties.driverVersion. in GetSystemInfoVulkanWithICD()
261 switch (properties.vendorID) in GetSystemInfoVulkanWithICD()
265 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
266 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
270 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
271 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
275 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
276 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
280 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
281 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
285 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
286 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
290 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
291 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
295 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
296 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
300 gpu.driverVersion = FormatString("%d.%d.%d.%d", properties.driverVersion >> 22, in GetSystemInfoVulkanWithICD()
301 (properties.driverVersion >> 14) & 0XFF, in GetSystemInfoVulkanWithICD()
302 (properties.driverVersion >> 6) & 0XFF, in GetSystemInfoVulkanWithICD()
303 properties.driverVersion & 0x3F); in GetSystemInfoVulkanWithICD()
304 gpu.detailedDriverVersion.major = properties.driverVersion >> 22; in GetSystemInfoVulkanWithICD()
305 gpu.detailedDriverVersion.minor = (properties.driverVersion >> 14) & 0xFF; in GetSystemInfoVulkanWithICD()
306 gpu.detailedDriverVersion.subMinor = (properties.driverVersion >> 6) & 0xFF; in GetSystemInfoVulkanWithICD()
307 gpu.detailedDriverVersion.patch = properties.driverVersion & 0x3F; in GetSystemInfoVulkanWithICD()
311 if (properties.driverVersion & 0x80000000) in GetSystemInfoVulkanWithICD()
313 gpu.driverVersion = FormatString("%d.%d.%d", properties.driverVersion >> 22, in GetSystemInfoVulkanWithICD()
314 (properties.driverVersion >> 12) & 0X3FF, in GetSystemInfoVulkanWithICD()
315 properties.driverVersion & 0xFFF); in GetSystemInfoVulkanWithICD()
316 gpu.detailedDriverVersion.major = properties.driverVersion >> 22; in GetSystemInfoVulkanWithICD()
317 gpu.detailedDriverVersion.minor = (properties.driverVersion >> 12) & 0x3FF; in GetSystemInfoVulkanWithICD()
318 gpu.detailedDriverVersion.subMinor = properties.driverVersion & 0xFFF; in GetSystemInfoVulkanWithICD()
322 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
323 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
328 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
329 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
333 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
334 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
338 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
339 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
343 gpu.driverVersion = FormatString("0x%x", properties.driverVersion); in GetSystemInfoVulkanWithICD()
344 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
351 gpu.detailedDriverVersion.major = properties.driverVersion / 10000; in GetSystemInfoVulkanWithICD()
352 gpu.detailedDriverVersion.minor = (properties.driverVersion / 100) % 100; in GetSystemInfoVulkanWithICD()
353 gpu.detailedDriverVersion.patch = properties.driverVersion % 100; in GetSystemInfoVulkanWithICD()
362 gpu.driverApiVersion = properties.apiVersion; in GetSystemInfoVulkanWithICD()